[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles shell zinit zsh
0

Configure Feed

Select the types of activity you want to include in your feed.

Update svelte.zsh

+7 -4
+7 -4
svelte.zsh
··· 1 - »s() { bun run ${1:-dev} } 1 + alias p='pnpm' 2 + alias px='pnpx' 3 + 4 + »() { pnpm run ${1:-dev} } 2 5 s+(){ svelte-add $@ } 3 6 4 7 # +project from template (shadcn-svelte) ··· 16 19 17 20 cp -R "${local_template}/." "$appname" 18 21 chmod -R u+rw "$appname" 19 - 22 + 20 23 cd "$appname" && 21 24 rm -rf .git && 22 25 bun install && 23 - bun run dev 26 + bun run dev 24 27 } 25 28 26 29 +s0() { ··· 48 51 cd $appname 49 52 bun install 50 53 bun run dev 51 - } 54 + }