@@ -1207,7 +1207,7 @@ exports[`help should show help information using the "help --cache-type" option:
1207
1207
exports[`help should show help information using the "help --cache-type" option: stdout 1`] = `
1208
1208
"Usage: webpack --cache-type <value>
1209
1209
Description: In memory caching. Filesystem caching.
1210
- Possible values: " memory | filesystem"
1210
+ Possible values: ' memory' | ' filesystem'
1211
1211
1212
1212
To see list of all supported commands and options run 'webpack --help=verbose'.
1213
1213
@@ -1234,7 +1234,7 @@ exports[`help should show help information using the "help --mode" option: stder
1234
1234
exports[`help should show help information using the "help --mode" option: stdout 1`] = `
1235
1235
"Usage: webpack --mode <value>
1236
1236
Description: Enable production optimizations or development hints.
1237
- Possible values: " development | production | none"
1237
+ Possible values: ' development' | ' production' | ' none'
1238
1238
1239
1239
To see list of all supported commands and options run 'webpack --help=verbose'.
1240
1240
@@ -1269,12 +1269,26 @@ CLI documentation: https://webpack.js.org/api/cli/.
1269
1269
Made with ♥ by the webpack team."
1270
1270
`;
1271
1271
1272
+ exports[`help should show help information using the "help --output-chunk-format" option: stderr 1`] = `""`;
1273
+
1274
+ exports[`help should show help information using the "help --output-chunk-format" option: stdout 1`] = `
1275
+ "Usage: webpack --output-chunk-format <value>
1276
+ 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).
1277
+ Possible values: 'array-push' | 'commonjs' | 'module' | false
1278
+
1279
+ To see list of all supported commands and options run 'webpack --help=verbose'.
1280
+
1281
+ Webpack documentation: https://webpack.js.org/.
1282
+ CLI documentation: https://webpack.js.org/api/cli/.
1283
+ Made with ♥ by the webpack team."
1284
+ `;
1285
+
1272
1286
exports[`help should show help information using the "help --stats" option: stderr 1`] = `""`;
1273
1287
1274
1288
exports[`help should show help information using the "help --stats" option: stdout 1`] = `
1275
1289
"Usage: webpack --stats [value]
1276
1290
Description: Stats options object or preset name.
1277
- Possible values: " none | summary | errors-only | errors-warnings | minimal | normal | detailed | verbose"
1291
+ Possible values: ' none' | ' summary' | ' errors-only' | ' errors-warnings' | ' minimal' | ' normal' | ' detailed' | ' verbose'
1278
1292
1279
1293
To see list of all supported commands and options run 'webpack --help=verbose'.
1280
1294
@@ -1289,7 +1303,7 @@ exports[`help should show help information using the "help --target" option: std
1289
1303
"Usage: webpack --target <value...>
1290
1304
Short: webpack -t <value...>
1291
1305
Description: Environment to build for. Environment to build for. An array of environments to build for all of them when possible.
1292
- Possible values: " false"
1306
+ Possible values: false
1293
1307
1294
1308
To see list of all supported commands and options run 'webpack --help=verbose'.
1295
1309
@@ -1344,7 +1358,7 @@ exports[`help should show help information using the "help serve --mode" option:
1344
1358
exports[`help should show help information using the "help serve --mode" option: stdout 1`] = `
1345
1359
"Usage: webpack serve --mode <value>
1346
1360
Description: Enable production optimizations or development hints.
1347
- Possible values: " development | production | none"
1361
+ Possible values: ' development' | ' production' | ' none'
1348
1362
1349
1363
To see list of all supported commands and options run 'webpack --help=verbose'.
1350
1364
0 commit comments