|
|
@@ -252,8 +252,9 @@ gulp.task('header_minify',gulp.series('common'),function (){
|
|
|
return minify(headerOptions);
|
|
|
});
|
|
|
|
|
|
-gulp.task('header_css',function () {
|
|
|
- return css(headerOptions);
|
|
|
+gulp.task('header_css',function (done) {
|
|
|
+ css(headerOptions);
|
|
|
+ done();
|
|
|
})
|
|
|
|
|
|
gulp.task('header_inject',gulp.series('header_minify','header_css'),function () {
|