From f93b7aab9133ba9bf1edc4fc5342403fbbc9554b Mon Sep 17 00:00:00 2001 From: Jake Cobley Date: Sun, 31 Jan 2016 21:50:37 +0000 Subject: [PATCH] removed options from cssnano --- gulpfile.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4ff799e..9bf0292 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -104,10 +104,7 @@ var cssTasks = function(filename) { 'opera 12' ] }) - .pipe(cssNano, { - advanced: false, - rebase: false - }) + .pipe(cssNano) .pipe(function() { return gulpif(enabled.rev, rev()); })