From fb3f63ad81b5dc02c4dff377ffe72d93f2240c59 Mon Sep 17 00:00:00 2001 From: Daniel <50356015+danny007in@users.noreply.github.com> Date: Wed, 20 Jan 2021 00:06:37 +0530 Subject: [PATCH] nodemon pararllel fixed --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0450775dd..63230db6c 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "test": "npm-run-all lint production", "plugins": "node build/npm/Publish.js -v", "sync": "browser-sync start --server --files *.html pages/ dist/", - "watch": "npm-run-all --parallel watch-css watch-js", + "watch": "concurrently \"npm run watch-css\" \"npm run watch-js\"", "watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-lint css\"", "watch-js": "nodemon --watch build/js -e js -x \"npm-run-all js-lint js\"" },