Skip to content

Commit b2a420a

Browse files
committed
[FIX] decorateBootstrapModule should default to "false"
The default value in the schema was not aligned with the actual default value in the code. Starting with v4, the default values are applied to the bundle config, which is why it now started to matter.
1 parent f676398 commit b2a420a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/validation/schema/specVersion/kind/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@
420420
}
421421
},
422422
"$comment": "Add async prop only if mode = 'require'"
423-
},
423+
},
424424
"then": {
425425
"type": "object",
426426
"additionalProperties": false,
@@ -517,7 +517,7 @@
517517
},
518518
"decorateBootstrapModule": {
519519
"type": "boolean",
520-
"default": true
520+
"default": false
521521
},
522522
"addTryCatchRestartWrapper": {
523523
"type": "boolean",
@@ -543,7 +543,7 @@
543543
},
544544
"decorateBootstrapModule": {
545545
"type": "boolean",
546-
"default": true
546+
"default": false
547547
},
548548
"addTryCatchRestartWrapper": {
549549
"type": "boolean",
@@ -573,7 +573,7 @@
573573
},
574574
"decorateBootstrapModule": {
575575
"type": "boolean",
576-
"default": true
576+
"default": false
577577
},
578578
"addTryCatchRestartWrapper": {
579579
"type": "boolean",

0 commit comments

Comments
 (0)