-
-
Notifications
You must be signed in to change notification settings - Fork 199
Closed
Labels
FeatureNew FeatureNew Feature
Description
When an error is thrown inside WebpackConfig.js, it falls outside of the try-catch used inside of getWebpackConfig() (
Lines 372 to 383 in 5ca96e9
| getWebpackConfig() { | |
| try { | |
| validator(webpackConfig); | |
| return configGenerator(webpackConfig); | |
| } catch (error) { | |
| // prettifies errors thrown by our library | |
| const pe = new PrettyError(); | |
| console.log(pe.render(error)); | |
| process.exit(1); // eslint-disable-line | |
| } |
Metadata
Metadata
Assignees
Labels
FeatureNew FeatureNew Feature