Skip to content

Commit f11ef01

Browse files
refactor: fix typo (#20570)
1 parent 39933d3 commit f11ef01

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

declarations/plugins/optimize/LimitChunkCountPlugin.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export interface LimitChunkCountPluginOptions {
1414
*/
1515
entryChunkMultiplicator?: number;
1616
/**
17-
* Limit the maximum number of chunks using a value greater greater than or equal to 1.
17+
* Limit the maximum number of chunks using a value greater than or equal to 1.
1818
*/
1919
maxChunks: number;
2020
}

schemas/WebpackOptions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5736,7 +5736,7 @@
57365736
{
57375737
"type": "array",
57385738
"items": {
5739-
"description": "Environment to build for.",
5739+
"description": "Specific environment, runtime, or syntax.",
57405740
"type": "string",
57415741
"minLength": 1
57425742
},

schemas/plugins/optimize/LimitChunkCountPlugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"type": "number"
1313
},
1414
"maxChunks": {
15-
"description": "Limit the maximum number of chunks using a value greater greater than or equal to 1.",
15+
"description": "Limit the maximum number of chunks using a value greater than or equal to 1.",
1616
"type": "number",
1717
"minimum": 1
1818
}

test/__snapshots__/Cli.basictest.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12443,7 +12443,7 @@ Object {
1244312443
"target": Object {
1244412444
"configs": Array [
1244512445
Object {
12446-
"description": "Environment to build for.",
12446+
"description": "Specific environment, runtime, or syntax.",
1244712447
"multiple": true,
1244812448
"path": "target[]",
1244912449
"type": "string",
@@ -12458,7 +12458,7 @@ Object {
1245812458
],
1245912459
},
1246012460
],
12461-
"description": "Environment to build for. Environment to build for. An array of environments to build for all of them when possible.",
12461+
"description": "Specific environment, runtime, or syntax. Environment to build for. An array of environments to build for all of them when possible.",
1246212462
"multiple": true,
1246312463
"simpleType": "string",
1246412464
},

types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9817,7 +9817,7 @@ declare interface LimitChunkCountPluginOptions {
98179817
entryChunkMultiplicator?: number;
98189818

98199819
/**
9820-
* Limit the maximum number of chunks using a value greater greater than or equal to 1.
9820+
* Limit the maximum number of chunks using a value greater than or equal to 1.
98219821
*/
98229822
maxChunks: number;
98239823
}

0 commit comments

Comments
 (0)