Move clean-css to npm scripts.
Showing
+25 -61
... | ... | @@ -18,6 +18,8 @@ |
], | ||
"scripts": { | ||
"change-version": "node grunt/change-version.js", | ||
"clean-css": "cleancss --skip-advanced --source-map --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --skip-advanced --source-map --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --skip-advanced --source-map --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css", | ||
"clean-css-docs": "cleancss --skip-advanced --source-map --output docs/assets/css/docs.min.css docs/assets/css/docs.min.css", | ||
"eslint": "eslint --ignore-path .eslintignore js", | ||
"jscs": "jscs --config=js/.jscsrc js/src js/tests/unit docs/assets/js/src grunt Gruntfile.js docs/assets/js/ie-emulation-modes-warning.js docs/assets/js/ie10-viewport-bug-workaround.js", | ||
"htmlhint": "htmlhint --config docs/.htmlhintrc _gh_pages/", | ||
... | ... | @@ -48,6 +50,7 @@ |
"babel-eslint": "^7.0.0", | ||
"babel-plugin-transform-es2015-modules-strip": "^0.1.0", | ||
"babel-preset-es2015": "^6.16.0", | ||
"clean-css": "^3.4.23", | ||
"eslint": "^3.7.1", | ||
"grunt": "^1.0.1", | ||
"grunt-babel": "^6.0.0", | ||
... | ... | @@ -57,7 +60,6 @@ |
"grunt-contrib-concat": "^1.0.1", | ||
"grunt-contrib-connect": "^1.0.2", | ||
"grunt-contrib-copy": "^1.0.0", | ||
"grunt-contrib-cssmin": "^1.0.2", | ||
"grunt-contrib-qunit": "^1.2.0", | ||
"grunt-contrib-sass": "^1.0.0", | ||
"grunt-contrib-uglify": "^2.0.0", | ||
... | ... |
Please register or sign in to comment