Browse Source

Fixed minify css

master
Igor Zhukov 9 years ago
parent
commit
5f934d068a
  1. 2
      gulpfile.js

2
gulpfile.js

@ -25,7 +25,7 @@ gulp.task('usemin', ['templates', 'enable-production'], function() { @@ -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'));
});

Loading…
Cancel
Save