From 9c9b3c47744906830f0b398d323efabd90d91a79 Mon Sep 17 00:00:00 2001 From: Duncan Cowan Date: Thu, 15 Dec 2022 19:50:28 +0000 Subject: [PATCH] fix: Correct allowed types of webpackStatsJson in angular-builder --- .../frameworks/angular/src/builders/build-storybook/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/frameworks/angular/src/builders/build-storybook/schema.json b/code/frameworks/angular/src/builders/build-storybook/schema.json index 2fa4edad3f2d..1640a3f986dd 100644 --- a/code/frameworks/angular/src/builders/build-storybook/schema.json +++ b/code/frameworks/angular/src/builders/build-storybook/schema.json @@ -53,7 +53,7 @@ } }, "webpackStatsJson": { - "type": "boolean", + "type": ["boolean", "string"], "description": "Write Webpack Stats JSON to disk", "default": false },