-
Notifications
You must be signed in to change notification settings - Fork 25
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
TypeError with webpack 4.x and create-react-app #264
Comments
Can you try it with current |
Tried this out on To make sure I am testing this correctly, these were my steps:
I think that's the right way to test this, but just want thorough to make sure I didn't overlook something! |
I figured out the source of the problem: The stacktrace in the image somehow shows the wrong code for line 36. It's actually a line containing I'll just remove the last remaining usage of |
Nice, good find! Yeah, that makes sense to switch over to |
Thanks! |
More closely related discussion on this: achingbrain/uint8arrays#17 |
Problem
Using webnative 0.26 with the
react-scripts
local dev server and build results in TypeErrors.Impact
It is difficult to use webnative 0.26 with an app generated by create-react-app.
Detail
When running
react-scripts start
, the local dev server fails with an error in the browser:Running
react-scripts build
succeeds, but the built app does not load and fails with aUncaught TypeError: can't convert BigInt to number
error.To Reproduce
Steps to reproduce the behavior:
npm start
npm run build
The text was updated successfully, but these errors were encountered: