File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ Global options:
794
794
795
795
Commands:
796
796
build|bundle|b [entries...] [options] Run webpack (default command, can be omitted).
797
- configtest|t [config-path] Tests webpack configuration against validation errors .
797
+ configtest|t [config-path] Validate a webpack configuration.
798
798
help|h [command] [option] Display help for commands and options.
799
799
info|i [options] Outputs information about your system.
800
800
init|c [scaffold...] [options] Initialize a new webpack configuration.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @webpack-cli/configtest" ,
3
3
"version" : " 1.0.0" ,
4
- "description" : " Tests webpack configuration against validation errors ." ,
4
+ "description" : " Validate a webpack configuration." ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " lib/index.d.ts" ,
7
7
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class ConfigTestCommand {
6
6
{
7
7
name : 'configtest [config-path]' ,
8
8
alias : 't' ,
9
- description : 'Tests webpack configuration against validation errors .' ,
9
+ description : 'Validate a webpack configuration.' ,
10
10
pkg : '@webpack-cli/configtest' ,
11
11
} ,
12
12
[ ] ,
Original file line number Diff line number Diff line change @@ -63,17 +63,17 @@ npx webpack-cli --help verbose
63
63
### Available Commands
64
64
65
65
```
66
- build|bundle|b [options] Run webpack (default command, can be omitted).
67
- watch|w [options] Run webpack and watch for files changes.
68
- version|v [commands...] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands.
66
+ build|bundle|b [entries...] [options] Run webpack (default command, can be omitted).
67
+ configtest|t [config-path] Validate a webpack configuration.
69
68
help|h [command] [option] Display help for commands and options.
70
- serve|s [options] Run the webpack dev server.
71
69
info|i [options] Outputs information about your system.
72
- init|c [options] [ scaffold...] Initialize a new webpack configuration.
70
+ init|c [scaffold...] [options ] Initialize a new webpack configuration.
73
71
loader|l [output-path] Scaffold a loader.
74
72
migrate|m <config-path> [new-config-path] Migrate a configuration to a new version.
75
- configtest|t [config-path] Tests webpack configuration against validation errors.
76
73
plugin|p [output-path] Scaffold a plugin.
74
+ serve|s [entries...] [options] Run the webpack dev server.
75
+ version|v [commands...] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands.
76
+ watch|w [entries...] [options] Run webpack and watch for files changes.
77
77
```
78
78
79
79
### webpack 4
You can’t perform that action at this time.
0 commit comments