diff options
| author | XhmikosR <[email protected]> | 2019-01-04 16:03:35 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-01-05 20:02:00 +0200 |
| commit | fcb034828fc2a9463ee30631fbd118885d8675b7 (patch) | |
| tree | 7cb376e9b10b3d95efcdc6db08c4361d23a1340f | |
| parent | 75ec03c2ab5b157be71b99b68a31a2f9df83952f (diff) | |
| download | bootstrap-fcb034828fc2a9463ee30631fbd118885d8675b7.tar.xz bootstrap-fcb034828fc2a9463ee30631fbd118885d8675b7.zip | |
stylelint: no need to specify syntax.
This speeds things up a bit because we don't spawn a new instance.
| -rw-r--r-- | package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index e449c8de7..12aed3ebf 100644 --- a/package.json +++ b/package.json @@ -31,8 +31,8 @@ "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-docs": "cross-env-shell node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 site/docs/$npm_package_version_short/assets/scss/docs.scss site/docs/$npm_package_version_short/assets/css/docs.min.css", "css-lint": "npm-run-all --parallel css-lint-*", - "css-lint-main": "stylelint --syntax scss \"scss/**/*.scss\"", - "css-lint-docs": "stylelint --syntax scss \"site/docs/**/assets/scss/*.scss\" && stylelint \"site/docs/**/*.css\"", + "css-lint-main": "stylelint \"scss/**/*.scss\"", + "css-lint-docs": "stylelint \"site/docs/**/assets/scss/*.scss\" \"site/docs/**/*.css\"", "css-lint-vars": "fusv scss/ site/docs/", "css-minify": "npm-run-all --parallel css-minify-*", "css-minify-main": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css", |
