Adopt clean task after del update (cb -> promise)
This commit is contained in:
parent
9f8edffe28
commit
4b39bb7d89
1 changed files with 2 additions and 2 deletions
|
|
@ -98,8 +98,8 @@ var paths = {
|
|||
destName: 'brouter-web',
|
||||
};
|
||||
|
||||
gulp.task('clean', function (cb) {
|
||||
del(paths.dest + '/**/*', cb);
|
||||
gulp.task('clean', function () {
|
||||
return del(paths.dest + '/**/*');
|
||||
});
|
||||
|
||||
// libs that require loading before config.js
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue