Skip to content

Commit 772fa5f

Browse files
dependencies
1 parent 03ba548 commit 772fa5f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
"scripts": {
88
"firstRunPreact": "node_modules/.bin/preact create my-preact-app",
99
"testPreact": "if [ ! -f my-preact-app/package.json ]; then yarn run firstRunPreact; fi",
10-
"prestartPreact": "yarn run testPreact",
10+
"prestartPreact": "npm install && yarn run testPreact",
1111
"startPreact": "cd my-preact-app && yarn start",
1212
"namePkgReturn": "mv package.json replacement.package.json && mv temp.package.json package.json",
1313
"namePkgTemp": "mv package.json temp.package.json && mv replacement.package.json package.json",
1414
"firstRunAngular": "npm run namePkgTemp && ng new my-angular-app && npm run namePkgReturn",
1515
"testAngular": "if [ ! -f my-angular-app/package.json ]; then npm run firstRunAngular; fi",
16-
"prestartAngular": "npm run testAngular",
16+
"prestartAngular": "npm install && npm run testAngular",
1717
"startAngular": "cd my-angular-app && node_modules/.bin/ng serve",
1818
"firstRunVue": "node_modules/.bin/vue init webpack my-vue-app",
1919
"testVue": "if [ ! -f my-vue-app/package.json ]; then yarn run firstRunVue; fi",
20-
"prestartVue": "yarn run testVue",
20+
"prestartVue": "npm install && yarn run testVue",
2121
"startVue": "cd my-vue-app && npm install && npm run dev",
2222
"firstRunReact": "node_modules/.bin/create-react-app my-react-app",
2323
"testReact": "if [ ! -f my-react-app/package.json ]; then yarn run firstRunReact; fi",
24-
"prestartReact": "yarn run testReact",
24+
"prestartReact": "npm install && yarn run testReact",
2525
"startReact": "cd my-react-app && yarn start",
26-
"startAll": "npm install && parallelshell 'yarn run startReact' 'yarn run startPreact' 'yarn run startVue' 'yarn run startAngular'"
26+
"startAll": "parallelshell 'yarn run startReact' 'yarn run startPreact' 'yarn run startVue' 'yarn run startAngular'"
2727
},
2828
"dependencies": {
2929
"@angular/cli": "^1.4.3",

0 commit comments

Comments
 (0)