From faa39350e3bc69199543c77c437f128344e523d3 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Thu, 7 Apr 2016 14:10:25 -0700 Subject: [PATCH] chore: switch from concurrently to npm-run-all See PR #54 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f6449b10f..2e6e1ea89 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "angular2-quickstart", "version": "1.0.0", "scripts": { - "start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ", + "start": "tsc && npm-run-all --parallel tsc:w lite", "tsc": "tsc", "tsc:w": "tsc -w", "lite": "lite-server", @@ -22,7 +22,7 @@ "zone.js": "0.6.6" }, "devDependencies": { - "concurrently": "^2.0.0", + "npm-run-all": "^1.7.0", "lite-server": "^2.2.0", "typescript": "^1.8.9", "typings":"^0.7.12"