Skip to content

Commit

Permalink
Merge pull request #140 from Carreau/f-minify
Browse files Browse the repository at this point in the history
Do not minify css
  • Loading branch information
minrk committed Jun 10, 2015
2 parents bb54245 + 19e37b0 commit e0bb6e6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var path = require('path');
var through = require('through');
var gulp = require('gulp');
var less = require('gulp-less');
var minifyCSS = require('gulp-minify-css');
var newer = require('gulp-newer');
var rename = require('gulp-rename');
var sourcemaps = require('gulp-sourcemaps');
Expand All @@ -19,7 +18,7 @@ gulp.task('css', function () {
.pipe(less({
paths: [ path.join(__dirname, 'less', 'includes') ]
}))
.pipe(minifyCSS({restructuring: false}))
// we don't minify on purpose as it removes rules
.pipe(rename({
suffix: '.min'
}))
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"gulp": "^3.8.11",
"gulp-less": "^3.0.2",
"gulp-livereload": "^3.8.0",
"gulp-minify-css": "^1.0.0",
"gulp-newer": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.1",
Expand Down

0 comments on commit e0bb6e6

Please sign in to comment.