From 012224386cab458c47782a13a03df1726258492f Mon Sep 17 00:00:00 2001 From: Tom Scholz Date: Sun, 13 Aug 2017 23:59:44 +0200 Subject: [PATCH] Moved watch task up to match the rest of the package.json (#22756) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2112d7e7a2..1966577824 100644 --- a/package.json +++ b/package.json @@ -50,9 +50,9 @@ "release-zip": "cd dist/ && zip -r9 bootstrap-$npm_package_version-dist.zip * && shx mv bootstrap-$npm_package_version-dist.zip ..", "dist": "npm-run-all --parallel css js css-docs", "test": "npm-run-all dist js-test docs", + "watch": "npm-run-all --parallel watch-css watch-js", "watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css && npm run css-docs\"", - "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile-plugins\"", - "watch": "npm-run-all --parallel watch-css watch-js" + "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile-plugins\"" }, "style": "dist/css/bootstrap.css", "sass": "scss/bootstrap.scss",