-
Notifications
You must be signed in to change notification settings - Fork 68
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
URGENT 3.2.0 is very broken #68
Comments
Probably related to #67 |
Simple access to Step to reproduce: npm install jsbi --save app.jsconst JSBI = require('jsbi');
console.log('JSBI.BigInt:', JSBI.BigInt); |
Workaround for those stuck on v3.2.0: const JSBI = require('jsbi').default; But yeah we should try to restore the old behavior of exporting JSBI directly (and not as a named export called Update: Fixed in v3.2.1. Please upgrade instead of using this workaround! |
thank you Mathias ❤️ |
Fixed and released in v3.2.1. Let me know if that helped! |
Using v3.2.1 in a Typescript project
|
With v3.2.1 I believe Mathias fixed this so the above workaround is no longer necessary, and you should instead be able to write
|
I just upgraded to 3.2.0 and I get JSBI.BigInt is undefined error. Please verify the build.
The text was updated successfully, but these errors were encountered: