diff --git a/packages/webpack-cli/src/webpack-cli.ts b/packages/webpack-cli/src/webpack-cli.ts index 8d265721a46..9c4510e9d4e 100644 --- a/packages/webpack-cli/src/webpack-cli.ts +++ b/packages/webpack-cli/src/webpack-cli.ts @@ -1492,11 +1492,11 @@ class WebpackCLI { : helper.commandDescription(command); if (commandDescription.length > 0) { - output = [...output, `${INDENT}${commandDescription}`, ""]; + output = [...output, commandDescription, ""]; } // Usage - output = [...output, `${INDENT}${bold("Usage:")} ${helper.commandUsage(command)}`, ""]; + output = [...output, `${bold("Usage:")} ${helper.commandUsage(command)}`, ""]; // Arguments output = addSection( @@ -1689,26 +1689,26 @@ class WebpackCLI { /** A horizontal rule used to separate sections. */ #uiDivider(): string { - return `${UI_INDENT}${this.colors.blue("─".repeat(UI_DIVIDER_WIDTH))}`; + return this.colors.blue("─".repeat(UI_DIVIDER_WIDTH)); } /** A branded title, e.g. `⬡ webpack build`. */ #uiHeader(title: string): string { const { bold, cyan } = this.colors; - return `${UI_INDENT}${bold(cyan("⬡"))} ${bold(cyan(title))}`; + return `${bold(cyan("⬡"))} ${bold(cyan(title))}`; } /** A section heading with an underline, e.g. `Options` followed by a divider. */ #uiSectionTitle(title: string): string { const { bold, cyan } = this.colors; - return `${UI_INDENT}${bold(cyan(title))}\n${this.#uiDivider()}`; + return `${bold(cyan(title))}\n${this.#uiDivider()}`; } /** A single status message prefixed with an icon (`✔`/`✖`/`⚠`/`ℹ`). */ #uiStatusLine(kind: StatusKind, message: string): string { const { green, red, yellow, cyan } = this.colors; const color = { success: green, error: red, warning: yellow, info: cyan }[kind]; - return `${UI_INDENT}${color(UI_STATUS_ICONS[kind])} ${message}`; + return `${color(UI_STATUS_ICONS[kind])} ${message}`; } /** The header block printed at the top of a framed command (`info`, `version`, …). */ @@ -1716,7 +1716,7 @@ class WebpackCLI { const lines = ["", this.#uiHeader(`webpack ${name}`), this.#uiDivider()]; if (description) { - lines.push(`${UI_INDENT}${description}`, ""); + lines.push(description, ""); } return lines.join("\n"); @@ -1729,15 +1729,15 @@ class WebpackCLI { if (!options.verbose) { lines.push( - `${UI_INDENT}${cyan("ℹ")} Run ${bold("'webpack --help=verbose'")} to see all available commands and options.`, + `${cyan("ℹ")} Run ${bold("'webpack --help=verbose'")} to see all available commands and options.`, ); } lines.push( "", - `${UI_INDENT}${bold("Webpack documentation:")} ${cyan("https://webpack.js.org/")}`, - `${UI_INDENT}${bold("CLI documentation:")} ${cyan("https://webpack.js.org/api/cli/")}`, - `${UI_INDENT}${bold("Made with")} ${red("♥")} ${bold("by the webpack team")}`, + `${bold("Webpack documentation:")} ${cyan("https://webpack.js.org/")}`, + `${bold("CLI documentation:")} ${cyan("https://webpack.js.org/api/cli/")}`, + `${bold("Made with")} ${red("♥")} ${bold("by the webpack team")}`, ); return lines.join("\n"); diff --git a/test/api/__snapshots__/CLI.test.js.snap.webpack5 b/test/api/__snapshots__/CLI.test.js.snap.webpack5 index 81a91e0c740..ebd1bb701a4 100644 --- a/test/api/__snapshots__/CLI.test.js.snap.webpack5 +++ b/test/api/__snapshots__/CLI.test.js.snap.webpack5 @@ -6,10 +6,10 @@ exports[`CLI API custom help output should display help information 1`] = ` "", ], [ - " ⬡ --mode", + "⬡ --mode", ], [ - " ────────────────────────────────────────────────────────────────────────", + "────────────────────────────────────────────────────────────────────────", ], [ " Usage: webpack --mode ", @@ -21,17 +21,17 @@ exports[`CLI API custom help output should display help information 1`] = ` " Possible values: 'development' | 'production' | 'none'", ], [ - " ────────────────────────────────────────────────────────────────────────", + "────────────────────────────────────────────────────────────────────────", ], [ "", ], [ - " ℹ Run 'webpack --help=verbose' to see all available commands and options. + "ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team", +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team", ], ] `; diff --git a/test/configtest/with-config-path/__snapshots__/with-config-path.test.js.snap.webpack5 b/test/configtest/with-config-path/__snapshots__/with-config-path.test.js.snap.webpack5 index 9bf5b7c03d9..5d0ecb28466 100644 --- a/test/configtest/with-config-path/__snapshots__/with-config-path.test.js.snap.webpack5 +++ b/test/configtest/with-config-path/__snapshots__/with-config-path.test.js.snap.webpack5 @@ -18,7 +18,7 @@ exports[`'configtest' command with the configuration path option should throw sy exports[`'configtest' command with the configuration path option should throw syntax error: stdout 1`] = `""`; exports[`'configtest' command with the configuration path option should throw validation error: stderr 1`] = ` -" ✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. +"✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. - configuration.mode should be one of these: "development" | "production" | "none" -> Enable production optimizations or development hints." @@ -26,15 +26,15 @@ exports[`'configtest' command with the configuration path option should throw va exports[`'configtest' command with the configuration path option should throw validation error: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: ./error.config.js" +ℹ Validating: ./error.config.js" `; exports[`'configtest' command with the configuration path option should validate the config with alias 't': stderr 1`] = ` -" ✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. +"✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. - configuration.mode should be one of these: "development" | "production" | "none" -> Enable production optimizations or development hints." @@ -42,26 +42,26 @@ exports[`'configtest' command with the configuration path option should validate exports[`'configtest' command with the configuration path option should validate the config with alias 't': stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: ./error.config.js" +ℹ Validating: ./error.config.js" `; exports[`'configtest' command with the configuration path option should validate webpack config successfully: stderr 1`] = `""`; exports[`'configtest' command with the configuration path option should validate webpack config successfully: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: ./basic.config.js - ✔ No validation errors found. - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Validating: ./basic.config.js +✔ No validation errors found. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; diff --git a/test/configtest/without-config-path-custom-extension/__snapshots__/without-config-path.test.js.snap.webpack5 b/test/configtest/without-config-path-custom-extension/__snapshots__/without-config-path.test.js.snap.webpack5 index 10f0f6e3914..a2c1305da02 100644 --- a/test/configtest/without-config-path-custom-extension/__snapshots__/without-config-path.test.js.snap.webpack5 +++ b/test/configtest/without-config-path-custom-extension/__snapshots__/without-config-path.test.js.snap.webpack5 @@ -4,15 +4,15 @@ exports[`'configtest' command without the configuration path option should valid exports[`'configtest' command without the configuration path option should validate default configuration: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: /test/configtest/without-config-path-custom-extension/webpack.config.json - ✔ No validation errors found. - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Validating: /test/configtest/without-config-path-custom-extension/webpack.config.json +✔ No validation errors found. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; diff --git a/test/configtest/without-config-path-error/__snapshots__/without-config-path-error.test.js.snap.webpack5 b/test/configtest/without-config-path-error/__snapshots__/without-config-path-error.test.js.snap.webpack5 index b67c2d9e662..696d7552c70 100644 --- a/test/configtest/without-config-path-error/__snapshots__/without-config-path-error.test.js.snap.webpack5 +++ b/test/configtest/without-config-path-error/__snapshots__/without-config-path-error.test.js.snap.webpack5 @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing exports[`'configtest' command without the configuration path option should validate default configuration: stderr 1`] = ` -" ✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. +"✖ Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. - configuration.mode should be one of these: "development" | "production" | "none" -> Enable production optimizations or development hints." @@ -9,9 +9,9 @@ exports[`'configtest' command without the configuration path option should valid exports[`'configtest' command without the configuration path option should validate default configuration: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: /test/configtest/without-config-path-error/webpack.config.js" +ℹ Validating: /test/configtest/without-config-path-error/webpack.config.js" `; diff --git a/test/configtest/without-config-path-multi-compiler-mode/__snapshots__/without-config-path-multi-compiler-mode.test.js.snap.webpack5 b/test/configtest/without-config-path-multi-compiler-mode/__snapshots__/without-config-path-multi-compiler-mode.test.js.snap.webpack5 index ef55209a98b..6bfdfbdbece 100644 --- a/test/configtest/without-config-path-multi-compiler-mode/__snapshots__/without-config-path-multi-compiler-mode.test.js.snap.webpack5 +++ b/test/configtest/without-config-path-multi-compiler-mode/__snapshots__/without-config-path-multi-compiler-mode.test.js.snap.webpack5 @@ -4,15 +4,15 @@ exports[`'configtest' command without the configuration path option should valid exports[`'configtest' command without the configuration path option should validate default configuration: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: /test/configtest/without-config-path-multi-compiler-mode/webpack.config.js - ✔ No validation errors found. - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Validating: /test/configtest/without-config-path-multi-compiler-mode/webpack.config.js +✔ No validation errors found. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; diff --git a/test/configtest/without-config-path-no-configuration/__snapshots__/without-config-path-no-configuration.test.js.snap.webpack5 b/test/configtest/without-config-path-no-configuration/__snapshots__/without-config-path-no-configuration.test.js.snap.webpack5 index c3149333411..c96c015a434 100644 --- a/test/configtest/without-config-path-no-configuration/__snapshots__/without-config-path-no-configuration.test.js.snap.webpack5 +++ b/test/configtest/without-config-path-no-configuration/__snapshots__/without-config-path-no-configuration.test.js.snap.webpack5 @@ -1,11 +1,11 @@ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing -exports[`'configtest' command without the configuration path option should validate default configuration: stderr 1`] = `" ✖ No configuration found."`; +exports[`'configtest' command without the configuration path option should validate default configuration: stderr 1`] = `"✖ No configuration found."`; exports[`'configtest' command without the configuration path option should validate default configuration: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. " `; diff --git a/test/configtest/without-config-path/__snapshots__/without-config-path.test.js.snap.webpack5 b/test/configtest/without-config-path/__snapshots__/without-config-path.test.js.snap.webpack5 index 3ab20eb9dd5..1430fb4f62d 100644 --- a/test/configtest/without-config-path/__snapshots__/without-config-path.test.js.snap.webpack5 +++ b/test/configtest/without-config-path/__snapshots__/without-config-path.test.js.snap.webpack5 @@ -4,15 +4,15 @@ exports[`'configtest' command without the configuration path option should valid exports[`'configtest' command without the configuration path option should validate default configuration: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validating your webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validating your webpack configuration. - ℹ Validating: /test/configtest/without-config-path/webpack.config.js - ✔ No validation errors found. - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Validating: /test/configtest/without-config-path/webpack.config.js +✔ No validation errors found. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; diff --git a/test/help/__snapshots__/help.test.js.snap.devServer5.webpack5 b/test/help/__snapshots__/help.test.js.snap.devServer5.webpack5 index 0619097450d..d4214776b3c 100644 --- a/test/help/__snapshots__/help.test.js.snap.devServer5.webpack5 +++ b/test/help/__snapshots__/help.test.js.snap.devServer5.webpack5 @@ -94,15 +94,15 @@ exports[`help should show help information and respect the "--color" flag using exports[`help should show help information and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -125,15 +125,15 @@ exports[`help should show help information and respect the "--color" flag using -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -142,27 +142,27 @@ exports[`help should show help information and respect the "--color" flag using version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -185,15 +185,15 @@ exports[`help should show help information and respect the "--no-color" flag usi -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -202,27 +202,27 @@ exports[`help should show help information and respect the "--no-color" flag usi version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information and taking precedence when "--help" and "--version" option using together: stderr 1`] = `""`; exports[`help should show help information and taking precedence when "--help" and "--version" option using together: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -245,15 +245,15 @@ exports[`help should show help information and taking precedence when "--help" a -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -262,26 +262,26 @@ exports[`help should show help information and taking precedence when "--help" a version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'b' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'b' command using command syntax: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -304,33 +304,33 @@ exports[`help should show help information for 'b' command using command syntax: -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'b' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'b' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -355,32 +355,32 @@ exports[`help should show help information for 'b' command using the "--help ver --watch-options-stdin Stop watching when stdin stream has ended. --no-watch-options-stdin Negative 'watch-options-stdin' option. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'b' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'b' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -403,33 +403,33 @@ exports[`help should show help information for 'b' command using the "--help" op -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'build' and respect the "--color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'build' and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -452,33 +452,33 @@ exports[`help should show help information for 'build' and respect the "--color" -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'build' and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'build' and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -501,33 +501,33 @@ exports[`help should show help information for 'build' and respect the "--no-col -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'build' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'build' command using command syntax: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -550,33 +550,33 @@ exports[`help should show help information for 'build' command using command syn -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'build' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'build' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -601,32 +601,32 @@ exports[`help should show help information for 'build' command using the "--help --watch-options-stdin Stop watching when stdin stream has ended. --no-watch-options-stdin Negative 'watch-options-stdin' option. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'build' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'build' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack build - ──────────────────────────────────────────────────────────────────────── - Run webpack (default command, can be omitted). +⬡ webpack build +──────────────────────────────────────────────────────────────────────── +Run webpack (default command, can be omitted). - Usage: webpack build|bundle|b [entries...] [options] +Usage: webpack build|bundle|b [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -649,395 +649,395 @@ exports[`help should show help information for 'build' command using the "--help -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'configtest' and respect the "--color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'configtest' and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'configtest' and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'configtest' and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'configtest' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'configtest' command using command syntax: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'configtest' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'configtest' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'configtest' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'configtest' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'i' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'i' command using command syntax: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'i' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'i' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'i' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'i' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'info' and respect the "--color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'info' and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'info' and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'info' and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'info' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'info' command using command syntax: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'info' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'info' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'info' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'info' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 's' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 's' command using command syntax: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1133,33 +1133,33 @@ exports[`help should show help information for 's' command using command syntax: --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 's' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 's' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1180,32 +1180,32 @@ exports[`help should show help information for 's' command using the "--help ver --cache-max-generations Number of generations unused cache entries stay in memory cache at stack. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 's' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 's' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1301,33 +1301,33 @@ exports[`help should show help information for 's' command using the "--help" op --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'serve' and respect the "--color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'serve' and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1423,33 +1423,33 @@ exports[`help should show help information for 'serve' and respect the "--color" --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'serve' and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'serve' and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1545,33 +1545,33 @@ exports[`help should show help information for 'serve' and respect the "--no-col --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'serve' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'serve' command using command syntax: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1667,33 +1667,33 @@ exports[`help should show help information for 'serve' command using command syn --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'serve' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'serve' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1714,32 +1714,32 @@ exports[`help should show help information for 'serve' command using the "--help --cache-max-generations Number of generations unused cache entries stay in memory cache at stack. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'serve' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'serve' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1835,33 +1835,33 @@ exports[`help should show help information for 'serve' command using the "--help --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'server' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'server' command using command syntax: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -1957,33 +1957,33 @@ exports[`help should show help information for 'server' command using command sy --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'server' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'server' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2004,32 +2004,32 @@ exports[`help should show help information for 'server' command using the "--hel --cache-max-generations Number of generations unused cache entries stay in memory cache at stack. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'server' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'server' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack serve - ──────────────────────────────────────────────────────────────────────── - Run the webpack dev server and watch for source file changes while serving. +⬡ webpack serve +──────────────────────────────────────────────────────────────────────── +Run the webpack dev server and watch for source file changes while serving. - Usage: webpack serve|server|s [entries...] [options] +Usage: webpack serve|server|s [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2125,107 +2125,107 @@ exports[`help should show help information for 'server' command using the "--hel --no-web-socket-server Disallows to set web socket server and options. --web-socket-server-type Allows to set web socket server and options (by default 'ws'). - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 't' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 't' command using command syntax: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 't' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 't' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 't' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 't' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack configtest - ──────────────────────────────────────────────────────────────────────── - Validate a webpack configuration. +⬡ webpack configtest +──────────────────────────────────────────────────────────────────────── +Validate a webpack configuration. - Usage: webpack configtest|t [config-path] +Usage: webpack configtest|t [config-path] - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'w' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'w' command using command syntax: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2247,33 +2247,33 @@ exports[`help should show help information for 'w' command using command syntax: -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'w' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'w' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2298,32 +2298,32 @@ exports[`help should show help information for 'w' command using the "--help ver --watch-options-stdin Stop watching when stdin stream has ended. --no-watch-options-stdin Negative 'watch-options-stdin' option. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'w' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'w' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2345,33 +2345,33 @@ exports[`help should show help information for 'w' command using the "--help" op -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'watch' and respect the "--color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'watch' and respect the "--color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2393,33 +2393,33 @@ exports[`help should show help information for 'watch' and respect the "--color" -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'watch' and respect the "--no-color" flag using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'watch' and respect the "--no-color" flag using the "--help" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2441,33 +2441,33 @@ exports[`help should show help information for 'watch' and respect the "--no-col -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'watch' command using command syntax: stderr 1`] = `""`; exports[`help should show help information for 'watch' command using command syntax: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2489,33 +2489,33 @@ exports[`help should show help information for 'watch' command using command syn -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'watch' command using the "--help verbose" option: stderr 1`] = `""`; exports[`help should show help information for 'watch' command using the "--help verbose" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2540,32 +2540,32 @@ exports[`help should show help information for 'watch' command using the "--help --watch-options-stdin Stop watching when stdin stream has ended. --no-watch-options-stdin Negative 'watch-options-stdin' option. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information for 'watch' command using the "--help" option: stderr 1`] = `""`; exports[`help should show help information for 'watch' command using the "--help" option: stdout 1`] = ` " - ⬡ webpack watch - ──────────────────────────────────────────────────────────────────────── - Run webpack and watch for files changes. +⬡ webpack watch +──────────────────────────────────────────────────────────────────────── +Run webpack and watch for files changes. - Usage: webpack watch|w [entries...] [options] +Usage: webpack watch|w [entries...] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2587,34 +2587,34 @@ exports[`help should show help information for 'watch' command using the "--help -t, --target Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using command syntax: stderr 1`] = `""`; exports[`help should show help information using command syntax: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2637,15 +2637,15 @@ exports[`help should show help information using command syntax: stdout 1`] = ` -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -2654,57 +2654,57 @@ exports[`help should show help information using command syntax: stdout 1`] = ` version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "--help" option with the "verbose" value #2: stderr 1`] = `""`; exports[`help should show help information using the "--help" option with the "verbose" value #2: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: w +Usage: webpack [ ... - documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +pack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "--help" option with the "verbose" value: stderr 1`] = `""`; exports[`help should show help information using the "--help" option with the "verbose" value: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: w +Usage: webpack [ ... - documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +pack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "--help" option: stderr 1`] = `""`; exports[`help should show help information using the "--help" option: stdout 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -2727,15 +2727,15 @@ exports[`help should show help information using the "--help" option: stdout 1`] -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -2744,308 +2744,308 @@ exports[`help should show help information using the "--help" option: stdout 1`] version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --cache-type" option when using serve: stderr 1`] = `""`; exports[`help should show help information using the "help --cache-type" option when using serve: stdout 1`] = ` " - ⬡ --cache-type - ──────────────────────────────────────────────────────────────────────── +⬡ --cache-type +──────────────────────────────────────────────────────────────────────── Usage: webpack serve --cache-type Description: In memory caching. Filesystem caching. Possible values: 'memory' | 'filesystem' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --cache-type" option: stderr 1`] = `""`; exports[`help should show help information using the "help --cache-type" option: stdout 1`] = ` " - ⬡ --cache-type - ──────────────────────────────────────────────────────────────────────── +⬡ --cache-type +──────────────────────────────────────────────────────────────────────── Usage: webpack --cache-type Description: In memory caching. Filesystem caching. Possible values: 'memory' | 'filesystem' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --color" option: stderr 1`] = `""`; exports[`help should show help information using the "help --color" option: stdout 1`] = ` " - ⬡ --color - ──────────────────────────────────────────────────────────────────────── +⬡ --color +──────────────────────────────────────────────────────────────────────── Usage: webpack --color Description: Enable colors on console. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --mode" option: stderr 1`] = `""`; exports[`help should show help information using the "help --mode" option: stdout 1`] = ` " - ⬡ --mode - ──────────────────────────────────────────────────────────────────────── +⬡ --mode +──────────────────────────────────────────────────────────────────────── Usage: webpack --mode Description: Enable production optimizations or development hints. Possible values: 'development' | 'production' | 'none' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --no-color" option: stderr 1`] = `""`; exports[`help should show help information using the "help --no-color" option: stdout 1`] = ` " - ⬡ --no-color - ──────────────────────────────────────────────────────────────────────── +⬡ --no-color +──────────────────────────────────────────────────────────────────────── Usage: webpack --no-color Description: Disable colors on console. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --no-stats" option: stderr 1`] = `""`; exports[`help should show help information using the "help --no-stats" option: stdout 1`] = ` " - ⬡ --no-stats - ──────────────────────────────────────────────────────────────────────── +⬡ --no-stats +──────────────────────────────────────────────────────────────────────── Usage: webpack --no-stats Description: Negative 'stats' option. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --output-chunk-format" option: stderr 1`] = `""`; exports[`help should show help information using the "help --output-chunk-format" option: stdout 1`] = ` " - ⬡ --output-chunk-format - ──────────────────────────────────────────────────────────────────────── +⬡ --output-chunk-format +──────────────────────────────────────────────────────────────────────── Usage: webpack --output-chunk-format Description: The format of chunks (formats included by default are 'array-push' (web/WebWorker), 'commonjs' (node.js), 'module' (ESM), but others might be added by plugins). Possible values: 'array-push' | 'commonjs' | 'module' | false - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --server-type" option when using serve: stderr 1`] = `""`; exports[`help should show help information using the "help --server-type" option when using serve: stdout 1`] = ` " - ⬡ --server-type - ──────────────────────────────────────────────────────────────────────── +⬡ --server-type +──────────────────────────────────────────────────────────────────────── Usage: webpack serve --server-type Description: Allows to set server and options (by default 'http'). Possible values: 'http' | 'https' | 'spdy' | 'http2' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --stats" option: stderr 1`] = `""`; exports[`help should show help information using the "help --stats" option: stdout 1`] = ` " - ⬡ --stats - ──────────────────────────────────────────────────────────────────────── +⬡ --stats +──────────────────────────────────────────────────────────────────────── Usage: webpack --stats [value] Description: Stats options object or preset name. Possible values: 'none' | 'summary' | 'errors-only' | 'errors-warnings' | 'minimal' | 'normal' | 'detailed' | 'verbose' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --target" option: stderr 1`] = `""`; exports[`help should show help information using the "help --target" option: stdout 1`] = ` " - ⬡ --target - ──────────────────────────────────────────────────────────────────────── +⬡ --target +──────────────────────────────────────────────────────────────────────── Usage: webpack --target Short: webpack -t Description: Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible. Possible values: false - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help --version" option: stderr 1`] = `""`; exports[`help should show help information using the "help --version" option: stdout 1`] = ` " - ⬡ --version - ──────────────────────────────────────────────────────────────────────── +⬡ --version +──────────────────────────────────────────────────────────────────────── Usage: webpack --version Short: webpack -v Description: Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help -v" option: stderr 1`] = `""`; exports[`help should show help information using the "help -v" option: stdout 1`] = ` " - ⬡ --version - ──────────────────────────────────────────────────────────────────────── +⬡ --version +──────────────────────────────────────────────────────────────────────── Usage: webpack --version Short: webpack -v Description: Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help serve --color" option: stderr 1`] = `""`; exports[`help should show help information using the "help serve --color" option: stdout 1`] = ` " - ⬡ --color - ──────────────────────────────────────────────────────────────────────── +⬡ --color +──────────────────────────────────────────────────────────────────────── Usage: webpack serve --color Description: Enable colors on console. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help serve --mode" option: stderr 1`] = `""`; exports[`help should show help information using the "help serve --mode" option: stdout 1`] = ` " - ⬡ --mode - ──────────────────────────────────────────────────────────────────────── +⬡ --mode +──────────────────────────────────────────────────────────────────────── Usage: webpack serve --mode Description: Enable production optimizations or development hints. Possible values: 'development' | 'production' | 'none' - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information using the "help serve --no-color" option: stderr 1`] = `""`; exports[`help should show help information using the "help serve --no-color" option: stdout 1`] = ` " - ⬡ --no-color - ──────────────────────────────────────────────────────────────────────── +⬡ --no-color +──────────────────────────────────────────────────────────────────────── Usage: webpack serve --no-color Description: Disable colors on console. - ──────────────────────────────────────────────────────────────────────── +──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show help information with options for sub commands: stderr 1`] = `""`; exports[`help should show help information with options for sub commands: stdout 1`] = ` " - ⬡ webpack info - ──────────────────────────────────────────────────────────────────────── - Outputs information about your system. +⬡ webpack info +──────────────────────────────────────────────────────────────────────── +Outputs information about your system. - Usage: webpack info|i [options] +Usage: webpack info|i [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -o, --output To get the output in a specified format (accept json or markdown) -a, --additional-package Adds additional packages to the output - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show the same information using the "--help" option and command syntax: stderr from command syntax 1`] = `""`; @@ -3054,15 +3054,15 @@ exports[`help should show the same information using the "--help" option and com exports[`help should show the same information using the "--help" option and command syntax: stdout from command syntax 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -3085,15 +3085,15 @@ exports[`help should show the same information using the "--help" option and com -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -3102,25 +3102,25 @@ exports[`help should show the same information using the "--help" option and com version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; exports[`help should show the same information using the "--help" option and command syntax: stdout from option 1`] = ` " - ⬡ webpack - ──────────────────────────────────────────────────────────────────────── - The build tool for modern web applications. +⬡ webpack +──────────────────────────────────────────────────────────────────────── +The build tool for modern web applications. - Usage: webpack [entries...] [options] +Usage: webpack [entries...] [options] Alternative usage to run commands: webpack [command] [options] - Options - ──────────────────────────────────────────────────────────────────────── +Options +──────────────────────────────────────────────────────────────────────── -c, --config Provide path to one or more webpack configuration files to process, e.g. "./webpack.config.js". --config-name Name(s) of particular configuration(s) to use if configuration file exports an array of multiple configurations. -m, --merge Merge two or more configurations using 'webpack-merge'. @@ -3143,15 +3143,15 @@ exports[`help should show the same information using the "--help" option and com -w, --watch Enter watch mode, which rebuilds on file change. --watch-options-stdin Stop watching when stdin stream has ended. - Global options - ──────────────────────────────────────────────────────────────────────── +Global options +──────────────────────────────────────────────────────────────────────── --color Enable colors on console. --no-color Disable colors on console. -v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. -h, --help [verbose] Display help for commands and options. - Commands - ──────────────────────────────────────────────────────────────────────── +Commands +──────────────────────────────────────────────────────────────────────── build|bundle|b [entries...] [options] Run webpack (default command, can be omitted). configtest|t [config-path] Validate a webpack configuration. help|h [command] [option] Display help for commands and options. @@ -3160,10 +3160,10 @@ exports[`help should show the same information using the "--help" option and com version|v [options] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and other packages. watch|w [entries...] [options] Run webpack and watch for files changes. - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `; diff --git a/test/version/__snapshots__/output.test.js.snap.webpack5 b/test/version/__snapshots__/output.test.js.snap.webpack5 index 1381f14aac2..3ccb78420dd 100644 --- a/test/version/__snapshots__/output.test.js.snap.webpack5 +++ b/test/version/__snapshots__/output.test.js.snap.webpack5 @@ -2,13 +2,13 @@ exports[`'-o, --output ' usage gets info text by default: stdout 1`] = ` " - ⬡ webpack version - ──────────────────────────────────────────────────────────────────────── - Installed package versions. +⬡ webpack version +──────────────────────────────────────────────────────────────────────── +Installed package versions. - ⬡ Packages: - ──────────────────────────────────────────────────────────────────────── +⬡ Packages: +──────────────────────────────────────────────────────────────────────── css-loader: ^x.x.x → x.x.x eslint-config-webpack: ^x.x.x → x.x.x sass-loader: ^x.x.x → x.x.x @@ -17,10 +17,10 @@ exports[`'-o, --output ' usage gets info text by default: stdout 1`] = ` webpack: ^x.x.x → x.x.x webpack-bundle-analyzer: ^x.x.x → x.x.x webpack-dev-server: ^x.x.x → x.x.x - ──────────────────────────────────────────────────────────────────────── - ℹ Run 'webpack --help=verbose' to see all available commands and options. +──────────────────────────────────────────────────────────────────────── +ℹ Run 'webpack --help=verbose' to see all available commands and options. - Webpack documentation: https://webpack.js.org/ - CLI documentation: https://webpack.js.org/api/cli/ - Made with ♥ by the webpack team" +Webpack documentation: https://webpack.js.org/ +CLI documentation: https://webpack.js.org/api/cli/ +Made with ♥ by the webpack team" `;