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 {
155155 case "debug" :
156156 return (
157157 `${ baseMessage } \n` +
158- "The 'debug' property was removed in webpack 2.\n" +
158+ "The 'debug' property was removed in webpack 2.0.0. \n" +
159159 "Loaders should be updated to allow passing this option via loader options in module.rules.\n" +
160160 "Until loaders are updated one can use the LoaderOptionsPlugin to switch loaders into debug mode:\n" +
161161 "plugins: [\n" +
@@ -166,8 +166,7 @@ class WebpackOptionsValidationError extends WebpackError {
166166 ) ;
167167 }
168168 return (
169- baseMessage +
170- "\n" +
169+ `${ baseMessage } \n` +
171170 "For typos: please correct them.\n" +
172171 "For loader options: webpack >= v2.0.0 no longer allows custom properties in configuration.\n" +
173172 " 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