@@ -411,7 +411,7 @@ exports[`Validation should fail validation for array with only number 1`] = `
411
411
exports [` Validation should fail validation for array with string items and minLength 1` ] = `
412
412
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
413
413
- configuration.longString should be an array:
414
- [string (should not be shorter than 2 characters ), ...]"
414
+ [string (should be longer than 1 character ), ...]"
415
415
` ;
416
416
417
417
exports [` Validation should fail validation for array without items 1` ] = `
@@ -880,12 +880,12 @@ exports[`Validation should fail validation for maxItems Keyword 1`] = `
880
880
881
881
exports [` Validation should fail validation for maxLength 1` ] = `
882
882
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
883
- - configuration.customObject.maxLength should not be longer than 3 characters."
883
+ - configuration.customObject.maxLength should be shorter than 4 characters."
884
884
` ;
885
885
886
886
exports [` Validation should fail validation for maxLength with type string 1` ] = `
887
887
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
888
- - configuration.stringWithMaxLength should not be longer than 2 characters."
888
+ - configuration.stringWithMaxLength should be shorter than 3 characters."
889
889
` ;
890
890
891
891
exports [` Validation should fail validation for maxProperties 1` ] = `
@@ -931,7 +931,7 @@ exports[`Validation should fail validation for maximum with type number 1`] = `
931
931
932
932
exports [` Validation should fail validation for min length 1` ] = `
933
933
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
934
- - configuration.minLengthTwo should not be shorter than 2 characters ."
934
+ - configuration.minLengthTwo should be longer than 1 character ."
935
935
` ;
936
936
937
937
exports [` Validation should fail validation for min properties 1` ] = `
@@ -947,7 +947,7 @@ exports[`Validation should fail validation for minItems Keyword 1`] = `
947
947
948
948
exports [` Validation should fail validation for minLength with type string 1` ] = `
949
949
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
950
- - configuration.stringWithMinLength should not be shorter than 2 characters ."
950
+ - configuration.stringWithMinLength should be longer than 1 character ."
951
951
` ;
952
952
953
953
exports [` Validation should fail validation for minProperties 1` ] = `
@@ -1177,12 +1177,12 @@ exports[`Validation should fail validation for no type like string with formatMa
1177
1177
1178
1178
exports [` Validation should fail validation for no type like string with maxLength 1` ] = `
1179
1179
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1180
- - configuration.noTypeLikeStringMaxLength should not be longer than 2 characters | should be any non-string."
1180
+ - configuration.noTypeLikeStringMaxLength should be shorter than 3 characters | should be any non-string."
1181
1181
` ;
1182
1182
1183
1183
exports [` Validation should fail validation for no type like string with minLength 1` ] = `
1184
1184
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1185
- - configuration.noTypeLikeStringMinLength should not be shorter than 2 characters | should be any non-string."
1185
+ - configuration.noTypeLikeStringMinLength should be longer than 1 character | should be any non-string."
1186
1186
` ;
1187
1187
1188
1188
exports [` Validation should fail validation for no type like string with minLength equals 1 1` ] = `
@@ -1481,7 +1481,7 @@ exports[`Validation should fail validation for oneOf #1 1`] = `
1481
1481
exports[`Validation should fail validation for oneOf #2 1`] = `
1482
1482
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1483
1483
- configuration.optimization.runtimeChunk should be one of these:
1484
- boolean | \\"single\\" | \\"multiple\\" | object { name ? }
1484
+ boolean | \\"single\\" | \\"multiple\\" | empty string | object { name ? }
1485
1485
- > Create an additional chunk which contains only the webpack runtime and chunk hash maps
1486
1486
Details :
1487
1487
* configuration .optimization .runtimeChunk .name should be one of these :
@@ -1495,12 +1495,13 @@ exports[`Validation should fail validation for oneOf #2 1`] = `
1495
1495
exports [` Validation should fail validation for oneOf #3 1` ] = `
1496
1496
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1497
1497
- configuration.optimization.runtimeChunk should be one of these:
1498
- boolean | \\ "single\\ " | \\ "multiple\\ " | object { name ? }
1498
+ boolean | \\ "single\\ " | \\ "multiple\\ " | empty string | object { name ? }
1499
1499
- > Create an additional chunk which contains only the webpack runtime and chunk hash maps
1500
1500
Details :
1501
1501
* configuration .optimization .runtimeChunk should be a boolean .
1502
1502
* configuration .optimization .runtimeChunk should be one of these :
1503
1503
\\" single\\ " | \\" multiple\\ "
1504
+ * configuration .optimization .runtimeChunk should be a empty string .
1504
1505
* configuration .optimization .runtimeChunk should be an object :
1505
1506
object { name? }"
1506
1507
`;
@@ -1712,7 +1713,7 @@ exports[`Validation should fail validation for string #1 1`] = `
1712
1713
1713
1714
exports [` Validation should fail validation for string 1` ] = `
1714
1715
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1715
- - configuration.stringKeyword should not be shorter than 11 characters."
1716
+ - configuration.stringKeyword should be longer than 10 characters."
1716
1717
` ;
1717
1718
1718
1719
exports [` Validation should fail validation for string with empty pattern 1` ] = `
@@ -1727,7 +1728,7 @@ exports[`Validation should fail validation for string with minLength and maxLeng
1727
1728
1728
1729
exports [` Validation should fail validation for string with minLength, maxLength and pattern 1` ] = `
1729
1730
"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
1730
- - configuration.stringWithMinAndMaxLength should be a string (should not be shorter than 2 characters , should not be longer than 5 characters, should match pattern \\ "[bc]+\\ ")."
1731
+ - configuration.stringWithMinAndMaxLength should be a string (should be longer than 1 character , should be shorter than 6 characters, should match pattern \\ "[bc]+\\ ")."
1731
1732
` ;
1732
1733
1733
1734
exports [` Validation should fail validation for terser-webpack-plugin name 1` ] = `
0 commit comments