From c34853d2d19040e9451840084d9d12cc1bb8dc85 Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Mon, 15 May 2023 06:21:38 -0400 Subject: [PATCH] docs(core): document all/none for rollup external (#17005) --- docs/generated/packages/rollup/executors/rollup.json | 2 +- packages/rollup/src/executors/rollup/schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/generated/packages/rollup/executors/rollup.json b/docs/generated/packages/rollup/executors/rollup.json index fe3e6c1eb8..01e282a911 100644 --- a/docs/generated/packages/rollup/executors/rollup.json +++ b/docs/generated/packages/rollup/executors/rollup.json @@ -70,7 +70,7 @@ }, "external": { "type": "array", - "description": "A list of external modules that will not be bundled (`react`, `react-dom`, etc.).", + "description": "A list of external modules that will not be bundled (`react`, `react-dom`, etc.). Can also be set to `all` (bundle nothing) or `none` (bundle everything).", "oneOf": [ { "type": "string", "enum": ["all", "none"] }, { "type": "array", "items": { "type": "string" } } diff --git a/packages/rollup/src/executors/rollup/schema.json b/packages/rollup/src/executors/rollup/schema.json index 0f96ce9693..3a1ceef59b 100644 --- a/packages/rollup/src/executors/rollup/schema.json +++ b/packages/rollup/src/executors/rollup/schema.json @@ -70,7 +70,7 @@ }, "external": { "type": "array", - "description": "A list of external modules that will not be bundled (`react`, `react-dom`, etc.).", + "description": "A list of external modules that will not be bundled (`react`, `react-dom`, etc.). Can also be set to `all` (bundle nothing) or `none` (bundle everything).", "oneOf": [ { "type": "string",