-
Notifications
You must be signed in to change notification settings - Fork 298
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
Webpacking Browserify bundles #91
Comments
//cc @sokra |
see #87 (comment) |
Thanks @sokra for the correction here! Of course you handle this already :) The same arguments as above apply here to Browserify bundles then effectively, and still needs to be solved here. |
Fixed in #87. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the bug in #87, the problem seems to be that
require('error-stack-parser')
is an external require, but this cannot be statically analyzed from theWebpackBrowserify CommonJS bundle because the external requires and internal requires in aWebpackBrowserify bundle all look the same to Webpack.That is, Webpacking
WebpackBrowserify output doesn't work as we can't statically analyze the external requires.Ideally Webpack would have this "transitivity" property built into its output or input handling... but it doesn't unfortunately.What can likely be done here, is very careful static detections of
WebpackBrowserify bundles themselves, with an ability to thereby determine the externals.For example, in the bugsnag output, the hint that
error-stack-parser
is an external seems to come from the contextual object associated with the module that has that require:By reading the "
webpackbrowserify output structure", and determining these contextual objects, it should then be possible to enable this transitive Webpacking.Ideally such a feature would be implemented in Webpack core itself though. I'm sure @sokra already has a solution / thoughts on this as well.
The text was updated successfully, but these errors were encountered: