From 984203344e29af18a1922c91b570bfb8576f4586 Mon Sep 17 00:00:00 2001 From: Daniel <50356015+danny007in@users.noreply.github.com> Date: Mon, 18 Jan 2021 19:26:11 +0530 Subject: [PATCH 1/2] installed npm-run-parallel devDep --- package-lock.json | 20 ++++++++++++++++++++ package.json | 1 + 2 files changed, 21 insertions(+) diff --git a/package-lock.json b/package-lock.json index da24daa72..1f668c6d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7128,6 +7128,17 @@ } } }, + "npm-run-parallel": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/npm-run-parallel/-/npm-run-parallel-0.6.0.tgz", + "integrity": "sha512-fFJeeet8IDY9o/mDaMwPxTvHr0HoJytKrxNh06hot5lQhBaHJfFsW9tfWatVvYFQ92AJf+KTVEsmxd/+269wiw==", + "dev": true, + "requires": { + "meow": "^3.7.0", + "rx": "^4.0.8", + "rx-node": "^1.0.1" + } + }, "npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -8615,6 +8626,15 @@ "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=", "dev": true }, + "rx-node": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/rx-node/-/rx-node-1.0.2.tgz", + "integrity": "sha1-FRJAclp56Fc2CrBsxiZ5mWXglN4=", + "dev": true, + "requires": { + "rx": "*" + } + }, "rxjs": { "version": "5.5.12", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz", diff --git a/package.json b/package.json index 96e12c4b0..53ebe47a8 100644 --- a/package.json +++ b/package.json @@ -145,6 +145,7 @@ "node-sass-package-importer": "^5.3.2", "nodemon": "^2.0.7", "npm-run-all": "^4.1.5", + "npm-run-parallel": "^0.6.0", "postcss": "^8.2.4", "postcss-cli": "^8.3.1", "postcss-scrollbar": "^0.3.0", From 051be9f0b8dacbcce9e259d8c93764197104ff0c Mon Sep 17 00:00:00 2001 From: Daniel <50356015+danny007in@users.noreply.github.com> Date: Mon, 18 Jan 2021 19:28:50 +0530 Subject: [PATCH 2/2] parallel plugin changed for nodemon --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53ebe47a8..2b8355fca 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": "npm-run-parallel watch-css 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\"" },