Skip to content

Instantly share code, notes, and snippets.

@joshnuss
Created January 31, 2022 15:31
Show Gist options
  • Save joshnuss/684503c56fe7927132ffd011a0bc36d5 to your computer and use it in GitHub Desktop.
Save joshnuss/684503c56fe7927132ffd011a0bc36d5 to your computer and use it in GitHub Desktop.
bash alias for creating svelte-kit projects
sk() {
pnpm init svelte@next $1 \
&& cd $1 \
&& pnpm install \
&& git init \
&& git add . \
&& git commit -m 'Initial commit'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment