From b3bbd9d6a7c46c3a1625a6599e4ec0462fa50089 Mon Sep 17 00:00:00 2001 From: Jack Reed <phillipjreed@gmail.com> Date: Tue, 21 Apr 2020 16:58:55 -0600 Subject: [PATCH] Make sure concurrent processes being run on npm start get killed off --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2a646bfae..ccb4174a4 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "build:watch": "webpack --watch --mode=development", "prepublishOnly": "npm run clean && npm run build:es && npm run build:cjs && npm run build", "size": "bundlewatch --config bundlewatch.config.json", - "start": "npm run build:dev && concurrently \"npm run build:watch\" \"npm run server -- -p 4444\"" + "start": "npm run build:dev && concurrently -k \"npm:build:watch\" \"npm:server -- -p 4444\"" }, "license": "Apache-2.0", "contributors": [ -- GitLab