javascript - Task do not complete - do I need to return anything from my method? -
i have series of tasks:
gulp.task('build', gulp.series(flag, clean, data));
in flag have:
if(!path){ console.log('path not specified'.red); process.exit(1); }
but when run it, get:
[09:26:12] starting 'default'... [09:26:12] starting 'build'... [09:26:12] starting 'flag'... [09:26:12] following tasks did not complete: default, build, flag [09:26:12] did forget signal async completion?
this happens when use flag. going wrong?
Comments
Post a Comment