File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/backpack-core/config Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -127,11 +127,9 @@ module.exports = (options) => {
127127 // The FriendlyErrorsWebpackPlugin (when combined with source-maps)
128128 // gives Backpack its human-readable error messages.
129129 new FriendlyErrorsWebpackPlugin ( ) ,
130- // This plugin is awkwardly named. Use to be called NoErrorsPlugin.
131- // It does not actually swallow errors. Instead, it just prevents
132- // Webpack from printing out compile time stats to the console.
133- // @todo new webpack.NoEmitOnErrorsPlugin()
134- new webpack . NoErrorsPlugin ( )
130+ // The NoEmitOnErrorsPlugin plugin prevents Webpack
131+ // from printing out compile time stats to the console.
132+ new webpack . NoEmitOnErrorsPlugin ( )
135133 ]
136134 }
137135}
You can’t perform that action at this time.
0 commit comments