Skip to content

Commit

Permalink
update gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzhenn committed Aug 3, 2019
1 parent 2a30724 commit 56a8b84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ gulp.task('build', () => {
return bundleHelper.bundle('index.js');
});

gulp.task('minify', gulp.series(['build'], () => {
gulp.task('minify', gulp.series(['build'], done => {
bundleHelper.minify();
done();
}));

gulp.task('watch', gulp.series(['build'], () => {
Expand Down

0 comments on commit 56a8b84

Please sign in to comment.