|
23 | 23 | "bundlesize": "bundlesize",
|
24 | 24 | "check-broken-links": "npm-run-all --parallel --race \"http-server -- _gh_pages/\" blc",
|
25 | 25 | "css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
|
26 |
| - "css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify", |
| 26 | + "css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify css-copy", |
27 | 27 | "css-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs",
|
28 | 28 | "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css",
|
29 | 29 | "css-compile-docs": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 site/docs/4.1/assets/scss/docs.scss site/docs/4.1/assets/css/docs.min.css",
|
|
41 | 41 | "js-docs": "npm-run-all js-lint-docs js-minify-docs",
|
42 | 42 | "js-lint": "eslint js/src js/tests build/",
|
43 | 43 | "js-lint-docs": "eslint site/docs/4.1/assets/js/ site/sw.js",
|
44 |
| - "js-compile": "npm-run-all --parallel js-compile-*", |
| 44 | + "js-compile": "npm-run-all --parallel js-compile-* --sequential js-copy", |
45 | 45 | "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
|
46 | 46 | "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
|
47 | 47 | "js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps",
|
|
76 | 76 | "dist": "npm-run-all --parallel css js",
|
77 | 77 | "test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
|
78 | 78 | "watch": "npm-run-all --parallel watch-css-main watch-css-docs watch-js-main watch-js-docs",
|
79 |
| - "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm run css-main && npm run css-copy\"", |
| 79 | + "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"", |
80 | 80 | "watch-css-docs": "nodemon --watch site/docs/4.1/assets/scss/ --ext scss --exec \"npm run css-docs\"",
|
81 |
| - "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm run js-compile && npm run js-copy\"", |
| 81 | + "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm run js-compile\"", |
82 | 82 | "watch-js-docs": "nodemon --watch site/docs/4.1/assets/js/src/ --ext js --exec \"npm run js-docs\""
|
83 | 83 | },
|
84 | 84 | "style": "dist/css/bootstrap.css",
|
|
0 commit comments