@@ -411,7 +411,7 @@ exports[`Validation should fail validation for array with only number 1`] = `
411411exports [` Validation should fail validation for array with string items and minLength 1` ] = `
412412"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
413413 - configuration.longString should be an array:
414- [string (should not be shorter than 2 characters ), ...]"
414+ [string (should be longer than 1 character ), ...]"
415415` ;
416416
417417exports [` Validation should fail validation for array without items 1` ] = `
@@ -880,12 +880,12 @@ exports[`Validation should fail validation for maxItems Keyword 1`] = `
880880
881881exports [` Validation should fail validation for maxLength 1` ] = `
882882"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."
884884` ;
885885
886886exports [` Validation should fail validation for maxLength with type string 1` ] = `
887887"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."
889889` ;
890890
891891exports [` Validation should fail validation for maxProperties 1` ] = `
@@ -931,7 +931,7 @@ exports[`Validation should fail validation for maximum with type number 1`] = `
931931
932932exports [` Validation should fail validation for min length 1` ] = `
933933"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 ."
935935` ;
936936
937937exports [` Validation should fail validation for min properties 1` ] = `
@@ -947,7 +947,7 @@ exports[`Validation should fail validation for minItems Keyword 1`] = `
947947
948948exports [` Validation should fail validation for minLength with type string 1` ] = `
949949"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 ."
951951` ;
952952
953953exports [` Validation should fail validation for minProperties 1` ] = `
@@ -1177,12 +1177,12 @@ exports[`Validation should fail validation for no type like string with formatMa
11771177
11781178exports [` Validation should fail validation for no type like string with maxLength 1` ] = `
11791179"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."
11811181` ;
11821182
11831183exports [` Validation should fail validation for no type like string with minLength 1` ] = `
11841184"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."
11861186` ;
11871187
11881188exports [` 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`] = `
14811481exports[`Validation should fail validation for oneOf #2 1`] = `
14821482"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
14831483 - configuration.optimization.runtimeChunk should be one of these:
1484- boolean | \\"single\\" | \\"multiple\\" | object { name ? }
1484+ boolean | \\"single\\" | \\"multiple\\" | empty string | object { name ? }
14851485 - > Create an additional chunk which contains only the webpack runtime and chunk hash maps
14861486 Details :
14871487 * configuration .optimization .runtimeChunk .name should be one of these :
@@ -1495,12 +1495,13 @@ exports[`Validation should fail validation for oneOf #2 1`] = `
14951495exports [` Validation should fail validation for oneOf #3 1` ] = `
14961496"Invalid configuration object. Object has been initialised using a configuration object that does not match the API schema.
14971497 - configuration.optimization.runtimeChunk should be one of these:
1498- boolean | \\ "single\\ " | \\ "multiple\\ " | object { name ? }
1498+ boolean | \\ "single\\ " | \\ "multiple\\ " | empty string | object { name ? }
14991499 - > Create an additional chunk which contains only the webpack runtime and chunk hash maps
15001500 Details :
15011501 * configuration .optimization .runtimeChunk should be a boolean .
15021502 * configuration .optimization .runtimeChunk should be one of these :
15031503 \\" single\\ " | \\" multiple\\ "
1504+ * configuration .optimization .runtimeChunk should be a empty string .
15041505 * configuration .optimization .runtimeChunk should be an object :
15051506 object { name? }"
15061507`;
@@ -1712,7 +1713,7 @@ exports[`Validation should fail validation for string #1 1`] = `
17121713
17131714exports [` Validation should fail validation for string 1` ] = `
17141715"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."
17161717` ;
17171718
17181719exports [` 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
17271728
17281729exports [` Validation should fail validation for string with minLength, maxLength and pattern 1` ] = `
17291730"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]+\\ ")."
17311732` ;
17321733
17331734exports [` Validation should fail validation for terser-webpack-plugin name 1` ] = `
0 commit comments