diff options
| author | XhmikosR <[email protected]> | 2014-06-24 18:57:33 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2014-06-24 19:01:40 +0300 |
| commit | 25ca51319b016bc4e42e1ba882d6f191e001d65d (patch) | |
| tree | 059d9f12e2a4a48fe5ea8fa2ee3065415aedf9e5 | |
| parent | dc7da296e4f658a32c618b9b01bb00645c272be8 (diff) | |
| download | bootstrap-25ca51319b016bc4e42e1ba882d6f191e001d65d.tar.xz bootstrap-25ca51319b016bc4e42e1ba882d6f191e001d65d.zip | |
Turn off clean-css' advanced optimizations.
Works around #13914.
We might give it another go in the future but the stuff this breaks over the time does not justify having it enabled. The gain in size is negligible:
dist/css/bootstrap.min.css: 108.65 kB → 109.5 kB
dist/css/bootstrap-theme.min.css: 18.84 kB → 18.86 kB
docs/assets/css/docs.min.css: 20.44 kB → 20.61 kB
| -rw-r--r-- | Gruntfile.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 66ee6975c..d1e94869f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -232,7 +232,8 @@ module.exports = function (grunt) { cssmin: { options: { compatibility: 'ie8', - keepSpecialComments: '*' + keepSpecialComments: '*', + noAdvanced: true }, core: { files: { |
