Open binarykitchen opened 10 years ago
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 Guys, another workaround:
// . . .
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.