Include `css-copy` in the `css` script.
Showing
+2 -2
... | ... | @@ -22,12 +22,12 @@ |
"http-server": "http-server --silent -p 3000", | ||
"bundlesize": "bundlesize", | ||
"check-broken-links": "npm-run-all --parallel --race \"http-server -- _gh_pages/\" blc", | ||
"css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*", | ||
"css": "npm-run-all css-lint* css-compile* css-prefix* css-minify* css-copy", | ||
"css-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/css/ site/docs/4.1/dist/", | ||
"css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify css-copy", | ||
"css-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs", | ||
"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 && npm run css-copy", | ||
"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", | ||
"css-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/css/ site/docs/4.1/dist/", | ||
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"", | ||
"css-lint-docs": "stylelint --syntax scss \"site/docs/4.1/assets/scss/*.scss\" && stylelint \"site/docs/**/*.css\"", | ||
"css-lint-vars": "fusv scss/ site/docs/", | ||
... | ... |
Please register or sign in to comment