diff options
| author | Martijn Cuppens <[email protected]> | 2019-07-22 15:31:25 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-07-22 16:31:25 +0300 |
| commit | 65446dc7dedf23019a16bb73e8abdd9c2a53cf12 (patch) | |
| tree | af04345f5828ab2362511e27d20bdf02597359bf | |
| parent | 4ba4cc2e795b7c7219aa92568bafb0419fba4711 (diff) | |
| download | bootstrap-65446dc7dedf23019a16bb73e8abdd9c2a53cf12.tar.xz bootstrap-65446dc7dedf23019a16bb73e8abdd9c2a53cf12.zip | |
Simplify `css-compile-main` script (#29102)
| -rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 36de149fb..cc907928e 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "css-main": "npm-run-all css-lint css-compile-main css-prefix-main css-minify-main css-copy", "css-docs": "npm-run-all css-compile-docs css-prefix-docs* css-minify-docs", "css-compile": "npm-run-all --parallel css-compile-*", - "css-compile-main": "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-main": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/ -o dist/css/ && npm run css-copy", "css-compile-docs": "cross-env-shell node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 site/static/docs/$npm_package_version_short/assets/scss/docs.scss site/static/docs/$npm_package_version_short/assets/css/docs.min.css", "css-lint": "npm-run-all --parallel css-lint-*", "css-lint-main": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache", |
