-
Notifications
You must be signed in to change notification settings - Fork 23
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
Package does not get transpiled when used with webpack/babel #21
Comments
Probably something like and would need to be added |
See also https://www.robinwieruch.de/publish-npm-package-node for a tutorial for this |
I know I should send a PR but no time :) just for the record, this is a problem easy to hit with setups like Create-React-App, see facebook/create-react-app#6195 (comment) |
@jnachtigall your workaround seems interesting. I tried it but I get Uncaught Error: Cannot find module 'core-js/modules/es.symbol.js'
at webpackMissingModule (index.js:1)
at eval (index.js:1)
at Object.../node_modules/json-schema-merge-allof/src/index.j Do you have any idea about it? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using this as dependency/part of https://github.com/rjsf-team/react-jsonschema-form/ and arrow functions and
...
rest operator where not transpiled, that is, the app was not running in IE11.I guess when publishing to npm the package should be transpiled.
I fixed locally with having this workaround in my webpack.config.js, that is, adding the package to be resolved locally:
The text was updated successfully, but these errors were encountered: