Skip to content

Commit 0466cf1

Browse files
committedJan 23, 2024
test: update
1 parent f9615a4 commit 0466cf1

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed
 

‎test/cli/__snapshots__/basic.test.js.snap.webpack5

+10-7
Original file line numberDiff line numberDiff line change
@@ -33,30 +33,33 @@ exports[`basic basic should work: stderr 1`] = `
3333
exports[`basic should output help should generate correct cli flags 1`] = `
3434
"Usage: webpack serve|server|s [entries...] [options]
3535

36-
Run the webpack dev server.
36+
Run the webpack dev server and watch for source file changes while serving.
3737

3838
Options:
39-
-c, --config <value...> Provide path to a webpack configuration file e.g. ./webpack.config.js.
40-
--config-name <value...> Name of the configuration to use.
39+
-c, --config <pathToConfigFile...> Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js".
40+
--config-name <name...> Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations.
4141
-m, --merge Merge two or more configurations using 'webpack-merge'.
4242
--disable-interpret Disable interpret for loading the config file.
43-
--env <value...> Environment passed to the configuration when it is a function.
43+
--env <value...> Environment variables passed to the configuration when it is a function, e.g. "myvar" or "myvar=myval".
4444
--node-env <value> Sets process.env.NODE_ENV to the specified value.
45-
--define-process-env-node-env <value> Sets process.env.NODE_ENV to the specified value. (Currently an alias for \`--node-env\`)
4645
--analyze It invokes webpack-bundle-analyzer plugin to get bundle information.
4746
--progress [value] Print compilation progress during build.
48-
-j, --json [value] Prints result as JSON or store it in a file.
49-
--fail-on-warnings Stop webpack-cli process with non-zero exit code on warnings from webpack
47+
-j, --json [pathToJsonFile] Prints result as JSON or store it in a file.
48+
--fail-on-warnings Stop webpack-cli process with non-zero exit code on warnings from webpack.
49+
-e, --extends <value...> Path to the configuration to be extended (only works when using webpack-cli).
5050
-d, --devtool <value> A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map).
5151
--no-devtool Negative 'devtool' option.
5252
--entry <value...> A module that is loaded upon startup. Only the last one is exported.
53+
--extends <value...> Path to the configuration to be extended (only works when using webpack-cli).
5354
--mode <value> Enable production optimizations or development hints.
5455
--name <value> Name of the configuration. Used when loading multiple configurations.
5556
-o, --output-path <value> The output directory as **absolute path** (required).
5657
--stats [value] Stats options object or preset name.
5758
--no-stats Negative 'stats' option.
5859
-t, --target <value...> Environment to build for. Environment to build for. An array of environments to build for all of them when possible.
5960
--no-target Negative 'target' option.
61+
-w, --watch Enter watch mode, which rebuilds on file change.
62+
--no-watch Negative 'watch' option.
6063
--watch-options-stdin Stop watching when stdin stream has ended.
6164
--no-watch-options-stdin Negative 'watch-options-stdin' option.
6265
--allowed-hosts <value...> Allows to enumerate the hosts from which access to the dev server are allowed (useful when you are proxying dev server, by default is 'auto').

0 commit comments

Comments
 (0)
Please sign in to comment.