Browse Source

Completely disable clean-css's advanced optimizations for all the CSS files.

Fixes #395.
pull/396/head
XhmikosR 11 years ago
parent
commit
bafe784b3b
  1. 4
      Gruntfile.js
  2. 2
      dist/ratchet.min.css
  3. 2
      docs/dist/ratchet.min.css

4
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'

2
dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

2
docs/dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save