Skip to content

Commit d92c3b6

Browse files
Moved Vue out of startAll
1 parent 3d4daa9 commit d92c3b6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ cd simple-init-react-angular-preact-vue
1212
npm install
1313
```
1414

15-
### Run All Four
15+
### Run React, Angular and Preact at the same time
1616

17-
Running the startAll script will execute startReact, startPreact, startAngular, and startVue. Please look to the individual script to see cli specifics.
17+
Running the startAll script will execute startReact, startPreact, and startAngular. Please look to the individual script to see cli specifics. Vue required interactive information to begin. Please see below for starting the Vue application.
1818

1919
Ensure that you have previously installed yarn and then run this line of code.
2020
```
2121
yarn run startAll
2222
```
23-
The most typical errors when they occur come from ports 3000, 8080, 6789 and 4200 already being used; and yarn not being installed. If you do not have yarn installed, run the following line of code.
23+
The most typical errors when they occur come from ports 3000, 6789 and 4200 already being used; and yarn not being installed. If you do not have yarn installed, run the following line of code.
2424

2525
```
2626
npm install -g yarn

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"testReact": "if [ ! -f my-react-app/package.json ]; then yarn run firstRunReact; fi",
2424
"prestartReact": "yarn install && yarn run testReact",
2525
"startReact": "cd my-react-app && yarn start",
26-
"startAll": "parallelshell 'yarn run startReact' 'yarn run startAngular' 'yarn run startPreact' 'yarn run startVue'"
26+
"startAll": "parallelshell 'yarn run startReact' 'yarn run startAngular' 'yarn run startPreact'"
2727
},
2828
"dependencies": {
2929
"@angular/cli": "^1.4.3",

replacement.package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"testReact": "if [ ! -f my-react-app/package.json ]; then yarn run firstRunReact; fi",
2424
"prestartReact": "yarn install && yarn run testReact",
2525
"startReact": "cd my-react-app && yarn start",
26-
"startAll": "parallelshell 'yarn run startReact' 'yarn run startAngular' 'yarn run startPreact' 'yarn run startVue'"
26+
"startAll": "parallelshell 'yarn run startReact' 'yarn run startAngular' 'yarn run startPreact'"
2727
},
2828
"peerDependencies": {
2929
"@angular/cli": "^1.4.3",

0 commit comments

Comments
 (0)