File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ class WebpackOptionsValidationError extends WebpackError {
155
155
case "debug" :
156
156
return (
157
157
`${ baseMessage } \n` +
158
- "The 'debug' property was removed in webpack 2.\n" +
158
+ "The 'debug' property was removed in webpack 2.0.0. \n" +
159
159
"Loaders should be updated to allow passing this option via loader options in module.rules.\n" +
160
160
"Until loaders are updated one can use the LoaderOptionsPlugin to switch loaders into debug mode:\n" +
161
161
"plugins: [\n" +
@@ -166,8 +166,7 @@ class WebpackOptionsValidationError extends WebpackError {
166
166
) ;
167
167
}
168
168
return (
169
- baseMessage +
170
- "\n" +
169
+ `${ baseMessage } \n` +
171
170
"For typos: please correct them.\n" +
172
171
"For loader options: webpack >= v2.0.0 no longer allows custom properties in configuration.\n" +
173
172
" Loaders should be updated to allow passing options via loader options in module.rules.\n" +
You can’t perform that action at this time.
0 commit comments