Merge pull request #1402 from austinpray/fixsourcemaps

Removes gulp-pleeease dependency
This commit is contained in:
Ben Word
2015-03-30 23:27:22 -05:00
3 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
### HEAD ### HEAD
* Update to Bootstrap 3.3.4 * Update to Bootstrap 3.3.4
* Fix `gulp --production` race condition ([#1398](https://github.com/roots/sage/issues/1398)) * Fix `gulp --production` race condition ([#1398](https://github.com/roots/sage/issues/1398))
* Remove pleeease dependency in favor of vanilla gulp-autoprefixer and gulp-minify-css ([#1402](https://github.com/roots/sage/issues/1402))
### 8.1.0: March 13th, 2015 ### 8.1.0: March 13th, 2015
* Move HTML5 Boilerplate's Google Analytics snippet to Soil ([#1382](https://github.com/roots/sage/issues/1382)) * Move HTML5 Boilerplate's Google Analytics snippet to Soil ([#1382](https://github.com/roots/sage/issues/1382))

View File

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

View File

@@ -27,11 +27,11 @@
"npm": ">=2.1.5" "npm": ">=2.1.5"
}, },
"devDependencies": { "devDependencies": {
"pleeease": "3.2.0",
"asset-builder": "^1.0.2", "asset-builder": "^1.0.2",
"browser-sync": "^2.4.0", "browser-sync": "^2.4.0",
"del": "^1.1.1", "del": "^1.1.1",
"gulp": "^3.8.11", "gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-changed": "^1.2.1", "gulp-changed": "^1.2.1",
"gulp-concat": "^2.5.2", "gulp-concat": "^2.5.2",
"gulp-flatten": "0.0.4", "gulp-flatten": "0.0.4",
@@ -40,7 +40,7 @@
"gulp-jshint": "^1.9.4", "gulp-jshint": "^1.9.4",
"gulp-less": "^3.0.2", "gulp-less": "^3.0.2",
"gulp-load-plugins": "^0.9.0", "gulp-load-plugins": "^0.9.0",
"gulp-pleeease": "^1.2.0", "gulp-minify-css": "^1.0.0",
"gulp-plumber": "^1.0.0", "gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.0", "gulp-rename": "^1.2.0",
"gulp-rev": "^3.0.1", "gulp-rev": "^3.0.1",