From 65dc8059570b0e1aa25656779fa54cfb2ec5d54a Mon Sep 17 00:00:00 2001 From: Jack Hsu Date: Wed, 28 Sep 2022 13:21:07 -0400 Subject: [PATCH] fix(bundling): add missing assets ignore option to @nrwl/esbuild:esbuild (#12288) --- docs/generated/packages/esbuild.json | 10 ++++++++++ packages/esbuild/src/executors/esbuild/schema.json | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/docs/generated/packages/esbuild.json b/docs/generated/packages/esbuild.json index fb62ffb30f923..2b2204266f7c5 100644 --- a/docs/generated/packages/esbuild.json +++ b/docs/generated/packages/esbuild.json @@ -185,6 +185,11 @@ "output": { "type": "string", "description": "Relative path within the output folder." + }, + "ignore": { + "description": "An array of globs to ignore.", + "type": "array", + "items": { "type": "string" } } }, "additionalProperties": false, @@ -278,6 +283,11 @@ "output": { "type": "string", "description": "Relative path within the output folder." + }, + "ignore": { + "description": "An array of globs to ignore.", + "type": "array", + "items": { "type": "string" } } }, "additionalProperties": false, diff --git a/packages/esbuild/src/executors/esbuild/schema.json b/packages/esbuild/src/executors/esbuild/schema.json index 49bc182a6407c..a3627f790a4ac 100644 --- a/packages/esbuild/src/executors/esbuild/schema.json +++ b/packages/esbuild/src/executors/esbuild/schema.json @@ -151,6 +151,13 @@ "output": { "type": "string", "description": "Relative path within the output folder." + }, + "ignore": { + "description": "An array of globs to ignore.", + "type": "array", + "items": { + "type": "string" + } } }, "additionalProperties": false,