You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nevermind, am closing this, as I presume it would be against the spirit of create-react-app to allow this much customization. will eject and update the excludes regex
It is not recommended to run Babel on node_modules. This is known to break some libraries, and also is terribly slow. The ecosystem convention so far has been to precompile libraries to ES5 before shipping them to npm—at least for the libraries meant to be consumed in the browser.
lockbot
locked and limited conversation to collaborators
Jan 22, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a node module, where in it's lib there is a file like so:
lib/foo.js
within App.js, when I require this module
Now, when I load this in the browser, an error is thrown
This is because webpack has required myModule/lib/foo.js, but has not done any processing on it -- the destructuring is not converted.
This makes sense, as it is indeed a node module outside of our app.
Is there a recommended solution to solve this? I could eject and try to update configuration, but am wishing there is another way
The text was updated successfully, but these errors were encountered: