gulp usemin task error. Fix #956
This commit is contained in:
parent
812801c752
commit
7ce6aabfaa
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…
x
Reference in New Issue
Block a user