Skip to content
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

Closed
guybedford opened this issue Dec 3, 2018 · 4 comments
Closed

Webpacking Browserify bundles #91

guybedford opened this issue Dec 3, 2018 · 4 comments

Comments

@guybedford
Copy link
Contributor

guybedford commented Dec 3, 2018

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 the Webpack Browserify CommonJS bundle because the external requires and internal requires in a Webpack Browserify bundle all look the same to Webpack.

That is, Webpacking Webpack Browserify 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 Webpack Browserify 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:

},{"./lib/es-utils":7,"./lib/has-stack":8,"error-stack-parser":undefined,"stack-generator":undefined}],21:[function(require,module,exports){

By reading the "webpack browserify 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.

@guybedford guybedford changed the title Webpacking webpack Webpacking webpack bundles Dec 3, 2018
@guybedford
Copy link
Contributor Author

//cc @sokra

@sokra
Copy link
Member

sokra commented Dec 3, 2018

see #87 (comment)

@guybedford guybedford changed the title Webpacking webpack bundles Webpacking Browserify bundles Dec 3, 2018
@guybedford
Copy link
Contributor Author

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.

@guybedford
Copy link
Contributor Author

Fixed in #87.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants