-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
end event never called ? #1043
Comments
Here is an even simpler example case, without the asynchronous function:
Does not work with Gulp 3.8.11 & latest 4.0 branch |
It does work when I add a |
You aren't sinking your stream. If you don't pipe a readable stream to another stream that actually reads from it, it does nothing. We sink the stream for you when you return it. |
Check out readable.resume() and surrounding docs: this has bitten me before, too! |
Thanks both of you! I'll check it out |
Hello,
First, thanks to all contributors for this awesome project.
I'm trying to understand why the callback never gets called in the following example:
Here is the output
The text was updated successfully, but these errors were encountered: