From 30eb7d2510cad2e48e2fff5e4452bc1501ceda6c Mon Sep 17 00:00:00 2001 From: Kayla Altepeter Date: Thu, 31 Oct 2019 21:29:14 -0500 Subject: [PATCH] fix(@angular/cli): change analytics type to boolean or string --- packages/angular/cli/lib/config/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular/cli/lib/config/schema.json b/packages/angular/cli/lib/config/schema.json index 8742495f2b4e..d2a5a6c3d0b8 100644 --- a/packages/angular/cli/lib/config/schema.json +++ b/packages/angular/cli/lib/config/schema.json @@ -67,7 +67,7 @@ } }, "analytics": { - "type": "boolean", + "type": ["boolean", "string"], "description": "Share anonymous usage data with the Angular Team at Google." } },