Browse Source

gulp usemin task error. Fix #956

master
Ho-Yang Tsai 9 years ago
parent
commit
7ce6aabfaa
  1. 12
      gulpfile.js

12
gulpfile.js

@ -23,8 +23,17 @@ gulp.task('templates', function() {
.pipe(gulp.dest('app/js')); .pipe(gulp.dest('app/js'));
}); });
gulp.task('usemin-badbrowser', function() {
return gulp.src('app/badbrowser.html')
.pipe($.usemin({
html: [$.minifyHtml({empty: true})],
css: ['concat', $.minifyCss({compatibility: true, keepBreaks: true})],
}))
.pipe(gulp.dest('dist'));
});
gulp.task('usemin', ['templates', 'enable-production'], function() { gulp.task('usemin', ['templates', 'enable-production'], function() {
return gulp.src(['app/index.html', 'app/badbrowser.html']) return gulp.src('app/index.html')
.pipe($.usemin({ .pipe($.usemin({
html: [$.minifyHtml({empty: true})], html: [$.minifyHtml({empty: true})],
js: ['concat', $.ngAnnotate(), $.uglify({outSourceMap: false})], js: ['concat', $.ngAnnotate(), $.uglify({outSourceMap: false})],
@ -252,6 +261,7 @@ gulp.task('build', function(callback) {
runSequence( runSequence(
'less', 'less',
'usemin', 'usemin',
'usemin-badbrowser',
['copy', 'copy-locales', 'copy-images', 'disable-production'], ['copy', 'copy-locales', 'copy-images', 'disable-production'],
callback callback
); );

Loading…
Cancel
Save