-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
strictModuleExceptionHandling missing in documentation of webpack 2 #796
Comments
Great low hanging fruit for anyone interested! |
Thanks for reporting! |
Didn't even know about this feature, that's awesome! Found a stackoverflow post that has a good explanation, maybe it could be a start for whoever wants to pick this up? |
Note that the stackoverflow answer is wrong. |
@sokra ah good to know. Then I guess they can reference your PR and the issue discussing it. |
This is confusing. From which cache? An example / why someone should enable or disable this - would make more sense. |
from // module.js
throw new Error("error"); // with strictModuleExceptionHandling = false
require("module") // <- throws
require("module") // <- doesn't throw // with strictModuleExceptionHandling = true
require("module") // <- throws
require("module") // <- also throw
|
Source in master:
https://github.com/webpack/webpack/blob/master/lib/MainTemplate.js#L69
Release info:
https://github.com/webpack/webpack/releases/tag/v2.1.0-beta.28
The text was updated successfully, but these errors were encountered: