Setup
λ gulp -v
[10:52:08] CLI version 1.0.0
[10:52:08] Local version 4.0.0-alpha.2
del v2.1.0
Windows 7
Tasks
var del = require('del');
function clean() {
return del(['docs', 'coverage', 'build', 'release']);
}
function build() {
return gulp.series(
clean
);
}
gulp.task(build);
Error
λ gulp build
[10:52:22] Using gulpfile C:\project\gulpfile.js
[10:52:22] Starting 'build'...
[10:52:22] The following tasks did not complete: build
[10:52:22] Did you forget to signal async completion?
Am I missing something?
Setup
del v2.1.0
Windows 7
Tasks
Error
Am I missing something?