-
Notifications
You must be signed in to change notification settings - Fork 227
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
Browserifiability #88
Comments
/cc @Raynos |
it looks like assert is in writable in the v0.10 branch but isn't actually being used anywhere, it's not in master. |
great pick-up @calvinmetcalf, I'll deal with that. Can you confirm that your changes made it in? that was kind of messy to merge on top of the other changes and back in to v0.10 too. |
I've published a new version of readable-stream with these updates. 1.0.26-3 is the current latest version but there is also now a 1.1.12 that is on the 1.1 tag (i.e. you have to explicitly install a streams3/v0.11 version if you want it for now). Let me know if there's anything else that needs to happen on this front. |
I've got readable-stream working in browsers including old ones but I'm having a lot of trouble porting core browserify to supply readable stream in the |
browserify 4.0 and up is using readable-stream now with just a small shim in stream-browserify to bootstrap the classic mode pipe implementation just like in node core. |
anything we need to do here on the browserify compatibility front before a 1.0.30 release now that we have a small window for a release? |
I've noticed, while using jspm, that the browserified version of 1.13 fails to import. I traced it to this line: which translates to:
After changing the file to:
Everything works as expected. I'm guessing that |
util was not supposed to be imported, its set to false in the package.json, likely an jspm issue would be my guess |
@AutoSponge if you required |
@sonewman I think we have the fix for this in SystemJS now. It will guard against this case by injecting an |
closing this as it is browserifiable and if other build systems have issues we can open up issues for those |
@substack @calvinmetcalf @feross @maxogden
I've merged all the PRs and synchronised the build scripts between the master and v0.10 branches--this was causing major pain in getting everything merged so I wouldn't be surprised if some things didn't go in properly.
Could you each check over both the master and v0.10 branches and see if they're doing what you wanted to be done for browserifiability for both 1.1 and 1.0 releases of readable-stream?
The text was updated successfully, but these errors were encountered: