From 5f934d068aeb087f6a6ae4cb8cacfb765f59dc07 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Mon, 19 Jan 2015 20:19:55 +0300 Subject: [PATCH] Fixed minify css --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9d174b5c..bc1ae8dd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -25,7 +25,7 @@ gulp.task('usemin', ['templates', 'enable-production'], function() { .pipe($.usemin({ html: [$.minifyHtml({empty: true})], js: ['concat', $.ngAnnotate(), $.uglify({outSourceMap: false})], - css: [$.minifyCss({compatibility: true, keepBreaks: true}), 'concat'] + css: ['concat', $.minifyCss({compatibility: true, keepBreaks: true})] })) .pipe(gulp.dest('dist')); });