Removes gulp-pleeease dependency

This gulp plugin was more trouble than it was worth.

ref https://github.com/roots/sage/issues/1386
ref https://discourse.roots.io/t/sourcemaps-no-longer-working-as-expected-with-sage-update/3022/1
This commit is contained in:
Austin Pray
2015-03-30 20:12:47 -05:00
parent 39caa2d391
commit c09410c927
3 changed files with 9 additions and 9 deletions

View File

@@ -81,14 +81,13 @@ var cssTasks = function(filename) {
}));
})
.pipe($.concat, filename)
.pipe($.pleeease, {
autoprefixer: {
browsers: [
'last 2 versions', 'ie 8', 'ie 9', 'android 2.3', 'android 4',
'opera 12'
]
}
.pipe($.autoprefixer, {
browsers: [
'last 2 versions', 'ie 8', 'ie 9', 'android 2.3', 'android 4',
'opera 12'
]
})
.pipe($.minifyCss)
.pipe(function() {
return $.if(enabled.rev, $.rev());
})