-
Notifications
You must be signed in to change notification settings - Fork 16
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
problem when bundling with webpack #13
Comments
Could you post an example of a project where it's failing? Admittedly, it's an ancient loader but doing |
I've made a tiny example here https://github.com/sibelius/evaluatex-webpack
|
I suspect that Webpack is optimistically trying to resolve
A lot has changed in transpiling/bundling since the original Evaluatex was written and the way it is loaded is not the way to do things anymore. While theoretically I might be able to remove the loader entirely and make I'll keep this issue open for now. |
requiring babel-register is causing trouble when bundling this package using webpack for lambdas: https://github.com/arthanzel/evaluatex/blob/master/index.js#L8
Module not found: Error: Can't resolve 'babel-register' in 'app/node_modules/evaluatex'
Module not found: Error: Can't resolve './src/evaluatex' in 'app/node_modules/evaluatex'
can we only keep the transpiled code? and avoid transpiling on the fly?
The text was updated successfully, but these errors were encountered: