From 3d8d3e9a1326d1652080721084c391fb60efae4a Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Thu, 5 Jan 2017 21:08:31 -0500 Subject: [PATCH] Upgrade to npm-run-all fixes #28 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 748ab11..b2526ef 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "build": "mkdir -p dist && browserify -g [uglifyify --ignore '**/node_modules/viz.js/*'] src/index.js -d | exorcist dist/bundle.js.map > dist/bundle.js && cp src/index.html dist/", "serve": "live-server src", "watch": "watchify src/index.js -o 'node_modules/.bin/exorcist src/bundle.js.map > src/bundle.js' -d", - "start": "parallelshell 'npm run watch -s' 'npm run serve -s' 'npm run test:watch'" + "start": "npm-run-all --parallel 'watch -s' 'serve -s' 'test:watch'" }, "keywords": [ "diagrams", @@ -54,7 +54,7 @@ "karma-jasmine": "^1.1.0", "karma-phantomjs-launcher": "^1.0.2", "live-server": "^1.1.0", - "parallelshell": "^2.0.0", + "npm-run-all": "^4.0.0", "phantomjs-prebuilt": "^2.1.14", "stringify": "^5.1.0", "uglifyify": "^3.0.1",