Skip to content

Commit 05e3ae8

Browse files
author
kvrlk
authored
Fixed messages
1 parent 95adc93 commit 05e3ae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/WebpackOptionsValidationError.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 since webpack 2.\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" +
@@ -169,7 +169,7 @@ class WebpackOptionsValidationError extends WebpackError {
169169
baseMessage +
170170
"\n" +
171171
"For typos: please correct them.\n" +
172-
"For loader options: webpack 2 no longer allows custom properties in configuration.\n" +
172+
"For loader options: webpack since version 2 no longer allows custom properties in configuration.\n" +
173173
" Loaders should be updated to allow passing options via loader options in module.rules.\n" +
174174
" Until loaders are updated one can use the LoaderOptionsPlugin to pass these options to the loader:\n" +
175175
" plugins: [\n" +

0 commit comments

Comments
 (0)