Skip to content

Commit

Permalink
handle callback of the del task, fix #84
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiip committed Oct 27, 2014
1 parent e5cdc82 commit eb30308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gulp/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ gulp.task('fonts', function () {
.pipe($.size());
});

gulp.task('clean', function () {
$.del(['.tmp', 'dist']);
gulp.task('clean', function (done) {
$.del(['.tmp', 'dist'], done);

This comment has been minimized.

Copy link
@zckrs

zckrs Oct 27, 2014

Collaborator

👍

});

gulp.task('build', ['html', 'partials', 'images', 'fonts']);

0 comments on commit eb30308

Please sign in to comment.