diff options
| author | Tom Scholz <[email protected]> | 2017-08-13 23:59:44 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-13 14:59:44 -0700 |
| commit | 012224386cab458c47782a13a03df1726258492f (patch) | |
| tree | 7fa50ce77054eadf8351edda1c3d49f99c39ba86 | |
| parent | 453a5fa03355300293e7012c3e421feadd69a26b (diff) | |
| download | bootstrap-012224386cab458c47782a13a03df1726258492f.tar.xz bootstrap-012224386cab458c47782a13a03df1726258492f.zip | |
Moved watch task up to match the rest of the package.json (#22756)
| -rw-r--r-- | package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 2112d7e7a..196657782 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", |
