From 9b8d641446c81dbd4912eb15f74b2dda1b301818 Mon Sep 17 00:00:00 2001 From: Jake Cobley Date: Thu, 11 Feb 2016 22:46:05 +0000 Subject: [PATCH] added safe:true option to cssnano --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9bf0292..53c5528 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -104,7 +104,9 @@ var cssTasks = function(filename) { 'opera 12' ] }) - .pipe(cssNano) + .pipe(cssNano, { + safe: true + }) .pipe(function() { return gulpif(enabled.rev, rev()); })