mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
16 lines
291 B
Bash
16 lines
291 B
Bash
tpl() {
|
|
case $1 in
|
|
nextjs)
|
|
shift
|
|
npx -y simple-scaffold@latest -t "$DOTFILES/scaffolds/nextjs" -o . $@
|
|
;;
|
|
tsfiles)
|
|
shift
|
|
npx -y simple-scaffold@latest -t "$DOTFILES/scaffolds/tsfiles" -o . - $@
|
|
;;
|
|
*)
|
|
echo_red "Usage: tpl [nextjs|tsfiles]"
|
|
;;
|
|
esac
|
|
}
|