From: Millenium Date: Tue, 26 Jan 2016 02:55:54 +0000 (-0800) Subject: Replaces minifyCss with cssnano X-Git-Tag: v6.2.1~15^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb39f27eeea0daad5ff97cacda16945d84e5ee52;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Replaces minifyCss with cssnano legacy module not being used caused the issue. --- diff --git a/gulp/deploy.js b/gulp/deploy.js index 22d975b92..1d6fdf80e 100644 --- a/gulp/deploy.js +++ b/gulp/deploy.js @@ -137,7 +137,7 @@ gulp.task('deploy:templates', function() { // The Customizer runs this function to generate files it needs gulp.task('deploy:custom', ['sass:foundation', 'javascript:foundation'], function() { gulp.src('./_build/assets/css/foundation.css') - .pipe(minifyCss()) + .pipe(cssnano()) .pipe(rename('foundation.min.css')) .pipe(gulp.dest('./_build/assets/css'));