Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2014-03-03 22:34:19 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2014-03-03 22:39:30 +0400
commitbafe784b3b002819be5c8d93f5b0771fa98ecba5 (patch)
tree98e7957f85f394a18b9947bb4704f9175f51cba9 /Gruntfile.js
parentd89f8305bbf28fda5f62d269934d4c1e864b7ce4 (diff)
Completely disable clean-css's advanced optimizations for all the CSS files.
Fixes #395.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index fc42867..60bed31 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -83,6 +83,7 @@ module.exports = function(grunt) {
options: {
banner: '', // set to empty; see bellow
keepSpecialComments: '*', // set to '*' because we already add the banner in sass
+ noAdvanced: true, // disable advanced optimizations since it causes many issues
report: 'min'
},
ratchet: {
@@ -90,9 +91,6 @@ module.exports = function(grunt) {
dest: '<%= meta.distPath %><%= pkg.name %>.min.css'
},
docs: {
- options: {
- noAdvanced: true // disable advanced optimizations since it causes code highlighting not to work
- },
src: [
'<%= meta.docsAssetsPath %>css/docs.css',
'<%= meta.docsAssetsPath %>css/pygments-manni.css'