From ebb27727e46ac5a249db9f33a9010f5cdbacb2cd Mon Sep 17 00:00:00 2001 From: Alan Date: Fri, 2 Aug 2019 08:51:59 +0200 Subject: [PATCH] docs: add `anyComponentStyle` budget description (#31955) In CLI 8.2 we introduced a new budget see: https://github.com/angular/angular-cli/pull/15127 PR Close #31955 --- aio/content/guide/build.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/aio/content/guide/build.md b/aio/content/guide/build.md index 51c0c43dc0..87e8d41b81 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -214,14 +214,17 @@ Each budget entry is a JSON object with the following properties: type - The type of budget. One of: + - * bundle - The size of a specific bundle. - * initial - The initial size of the app. - * allScript - The size of all scripts. - * all - The size of the entire app. - * anyScript - The size of any one script. - * any - The size of any file. + The type of budget. One of: + +* `bundle` - The size of a specific bundle. +* `initial` - The initial size of the app. +* `allScript` - The size of all scripts. +* `all` - The size of the entire app. +* `anyComponentStyle` - This size of any one component stylesheet. +* `anyScript` - The size of any one script. +* `any` - The size of any file.