gulpjs / vinyl

Virtual file format.
MIT License
1.28k stars 105 forks source link

node v0.8 support #12

Closed ctalkington closed 10 years ago

ctalkington commented 10 years ago

is the only reason this doesn't support node v0.8.x because of the streams? if so couldn't readable-stream be used to polyfill until v0.12 has been released and out for a bit.

sindresorhus commented 10 years ago

:-1: 0.10 has been out for a year now.

yocontra commented 10 years ago

You probably could shim it but I won't do it. Use 0.10, there is no reason to still be on 0.8

yocontra commented 10 years ago

If you did want to shim it yourself you could do it by overriding require('stream') with streams2 stuff.

ctalkington commented 10 years ago

I personally use 0.10 but I try to keep .0.8 support in my libs until v0.12 is released.