-
-
Notifications
You must be signed in to change notification settings - Fork 105
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
Remove .pipe method #107
Comments
@phated yep |
Are there plans to replace |
With the removal of this bad pipe function many gulp plugins do not work anymore. Trying to fix one with this old code: file // instance of Vinyl
.pipe(split2())
.pipe(through(someFunction(), function(callback) {
if (content.length) {
file.contents = new Buffer(content.join('\n'));
that.push(file);
}
// callback();
cb();
}));
How to fix this best? |
@binarykitchen This ticket was for the removal of a really old function |
Right, thanks |
This method seems like really old cruft that doesn't belong.
A few reasons I think it should be removed:
pipe
method could confuse duck-typing@contra do you agree?
The text was updated successfully, but these errors were encountered: