Closed eddiemonge closed 8 years ago
But why do they have to be?
gulp.task('first', gulp.series('one', 'two')); gulp.task('one', function(done) { // do stuff done(); }); gulp.task('two', function(done) { // do stuff done(); });
throws:
assert.js:89 throw new assert.AssertionError({ ^ AssertionError: Task never defined: one
The way you are using gulp 4 is an antipattern. This is by design but if you are unwilling to fix your code, we built https://github.com/gulpjs/undertaker-forward-reference for you to use.
But why do they have to be?
throws: