We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
But why do they have to be?
throws:
The text was updated successfully, but these errors were encountered: