From 64538cf82d6474811d26584fc682a22a7097bf3d Mon Sep 17 00:00:00 2001 From: Matthias Osswald Date: Thu, 1 Aug 2024 13:41:51 +0200 Subject: [PATCH] [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. --- lib/validation/schema/specVersion/kind/project.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/validation/schema/specVersion/kind/project.json b/lib/validation/schema/specVersion/kind/project.json index e8b3be79a..7e4480b71 100644 --- a/lib/validation/schema/specVersion/kind/project.json +++ b/lib/validation/schema/specVersion/kind/project.json @@ -420,7 +420,7 @@ } }, "$comment": "Add async prop only if mode = 'require'" - }, + }, "then": { "type": "object", "additionalProperties": false, @@ -517,7 +517,7 @@ }, "decorateBootstrapModule": { "type": "boolean", - "default": true + "default": false }, "addTryCatchRestartWrapper": { "type": "boolean", @@ -543,7 +543,7 @@ }, "decorateBootstrapModule": { "type": "boolean", - "default": true + "default": false }, "addTryCatchRestartWrapper": { "type": "boolean", @@ -573,7 +573,7 @@ }, "decorateBootstrapModule": { "type": "boolean", - "default": true + "default": false }, "addTryCatchRestartWrapper": { "type": "boolean",