Adopt clean task after del update (cb -> promise)

This commit is contained in:
Norbert Renner 2022-05-19 10:09:11 +02:00
parent 9f8edffe28
commit 4b39bb7d89

View file

@ -98,8 +98,8 @@ var paths = {
destName: 'brouter-web', destName: 'brouter-web',
}; };
gulp.task('clean', function (cb) { gulp.task('clean', function () {
del(paths.dest + '/**/*', cb); return del(paths.dest + '/**/*');
}); });
// libs that require loading before config.js // libs that require loading before config.js