Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit a1eebf7

Browse files
committed
use npm-run-all instead of concurrently for nicer syntax in scripts
1 parent b63489a commit a1eebf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "angular2-quickstart",
33
"version": "1.0.0",
44
"scripts": {
5-
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
5+
"start": "npm-run-all --parallel tsc:w lite",
66
"tsc": "tsc",
77
"tsc:w": "tsc -w",
88
"lite": "lite-server",
@@ -21,9 +21,9 @@
2121
"zone.js": "0.6.6"
2222
},
2323
"devDependencies": {
24-
"concurrently": "^2.0.0",
2524
"lite-server": "^2.1.0",
25+
"npm-run-all": "^1.7.0",
2626
"typescript": "^1.8.9",
27-
"typings":"^0.7.11"
27+
"typings": "^0.7.11"
2828
}
2929
}

0 commit comments

Comments
 (0)