diff options
| author | XhmikosR <[email protected]> | 2014-03-27 19:45:25 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2014-03-27 19:48:23 +0200 |
| commit | dea1945b4769cf9097b5da67a587b29a982023e2 (patch) | |
| tree | 3e62322eb2c3dc43a4f6b50dc47797d4a49cb361 | |
| parent | e9982cad66839f82515079912f207ee1b9708f9d (diff) | |
| download | bootstrap-dea1945b4769cf9097b5da67a587b29a982023e2.tar.xz bootstrap-dea1945b4769cf9097b5da67a587b29a982023e2.zip | |
Gruntfile.js: Remove default `report` option.
| -rw-r--r-- | Gruntfile.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index bf5705454..78f77a763 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,9 +107,6 @@ module.exports = function (grunt) { }, uglify: { - options: { - report: 'min' - }, bootstrap: { options: { banner: '<%= banner %>' @@ -178,8 +175,7 @@ module.exports = function (grunt) { }, minify: { options: { - cleancss: true, - report: 'min' + cleancss: true }, files: { 'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css', @@ -246,10 +242,9 @@ module.exports = function (grunt) { cssmin: { options: { + compatibility: 'ie8', keepSpecialComments: '*', - noAdvanced: true, // turn advanced optimizations off until the issue is fixed in clean-css - report: 'min', - compatibility: 'ie8' + noAdvanced: true // turn advanced optimizations off until the issue is fixed in clean-css }, docs: { src: [ |
