-
Notifications
You must be signed in to change notification settings - Fork 21
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
Event 'end' not fired #14
Comments
Had the same problem, reverting to version 0.2.4 fixed it for me. |
Yeah could do the same but IMO that's not the solution. |
Absolutely, just wanted to point out the issue was created between the two versions. |
+1 // . . .
gulp.src(CordovaLibDir)
.pipe(clean())
.on('error', done)
.on('data', function () {}) // fix end emit, listen the data
.on('end', function () {
console.log('END');
}); |
+1 |
@joaoneto +1 |
@peter-vilja either maintain your package or deprecate it! |
@jleppert it's been deprecated since Jun 25, 2014 in favor of del (https://www.npmjs.com/package/del). But if people do want to use gulp-clean instead, I could look into this. |
For my project I need to reuse parts of my Gulp file for other tasks, for example
cleanJs()
:This does not seem to work. Not sure what the case is here or if I am doing something wrong.
The text was updated successfully, but these errors were encountered: