Skip to content

Commit

Permalink
Add start scripts to package for all templates (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberDex authored Dec 11, 2024
1 parent 8a4a703 commit 836644a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/template-bundler-esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev",
"build": "node scripts/esbuild.prod.mjs",
"dev": "node scripts/esbuild.dev.mjs -w"
},
Expand Down
1 change: 1 addition & 0 deletions templates/template-bundler-import-map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "http-server . -o"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions templates/template-bundler-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev",
"build": "tsc && vite build",
"dev": "vite"
},
Expand Down
1 change: 1 addition & 0 deletions templates/template-bundler-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev",
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development"
},
Expand Down
1 change: 1 addition & 0 deletions templates/template-creation-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"start": "npm run dev",
"build": "tsc && vite build",
"dev": "vite"
},
Expand Down

0 comments on commit 836644a

Please sign in to comment.