diff --git a/OPTIONS.md b/OPTIONS.md index bf4cd0ba68f..55a9f365e4f 100644 --- a/OPTIONS.md +++ b/OPTIONS.md @@ -549,7 +549,7 @@ Options: --watch-options-ignored-reset Clear all items provided in configuration. Ignore some files from watching (glob pattern or regexp). --watch-options-poll `number`: use polling with specified interval. `true`: use polling. --watch-options-stdin Stop watching when stdin stream has ended. - --no-watch-options-stdin Negative 'watch-options-stdin' option. + --no-watch-options-stdin Do not stop watching when stdin stream has ended. Global options: --color Enable colors on console. @@ -559,14 +559,15 @@ Global options: Commands: bundle|b [options] Run webpack (default command, can be omitted). - help|h Display help for commands and options. version|v Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands. + help|h Display help for commands and options. serve|s [options] Run the webpack dev server. info|i [options] Outputs information about your system. init|c [options] [scaffold...] Initialize a new webpack configuration. loader|l [output-path] Scaffold a loader. - plugin|p [output-path] Scaffold a plugin. migrate|m [new-config-path] Migrate a configuration to a new version. + configtest|t Test your webpack configuration against validation errors. + plugin|p [output-path] Scaffold a plugin. To see list of all supported commands and options run 'webpack --help=verbose'. diff --git a/packages/configtest/src/index.ts b/packages/configtest/src/index.ts index 8316d54dd1e..cd5a318327f 100644 --- a/packages/configtest/src/index.ts +++ b/packages/configtest/src/index.ts @@ -8,7 +8,7 @@ class ConfigTestCommand { { name: 'configtest ', alias: 't', - description: 'Outputs information about your system.', + description: 'Test your webpack configuration against validation errors.', usage: '[configs]', pkg: '@webpack-cli/configtest', },