Skip to content

Commit

Permalink
[FIX] decorateBootstrapModule should default to "false"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
matz3 committed Aug 1, 2024
1 parent 0029e40 commit 64538cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/validation/schema/specVersion/kind/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@
}
},
"$comment": "Add async prop only if mode = 'require'"
},
},
"then": {
"type": "object",
"additionalProperties": false,
Expand Down Expand Up @@ -517,7 +517,7 @@
},
"decorateBootstrapModule": {
"type": "boolean",
"default": true
"default": false
},
"addTryCatchRestartWrapper": {
"type": "boolean",
Expand All @@ -543,7 +543,7 @@
},
"decorateBootstrapModule": {
"type": "boolean",
"default": true
"default": false
},
"addTryCatchRestartWrapper": {
"type": "boolean",
Expand Down Expand Up @@ -573,7 +573,7 @@
},
"decorateBootstrapModule": {
"type": "boolean",
"default": true
"default": false
},
"addTryCatchRestartWrapper": {
"type": "boolean",
Expand Down

0 comments on commit 64538cf

Please sign in to comment.