aboutsummaryrefslogtreecommitdiffstats
path: root/start
blob: 8596b88d7e0804f0d8bf648cfd8d067fc3f0539c (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/zsh
runner="$(echo "$([ -x "$(which npm)" ] && echo "npm")\n$([ -x "$(which yarn)" ] && echo "yarn")\n$([ -x "$(which pnpm)" ] && echo "pnpm")\nnode" | shuf | head -1)"

[ -n "$@" ] && cmd="dev" || cmd="$@"
if [ "$runner" = "node" ]; then
  node node_modules/vite/bin/vite.js $cmd
else
  "$runner" run $cmd
fi