Skip to content

Commit

Permalink
fix(bundling): add missing assets ignore option to @nrwl/esbuild:esbu…
Browse files Browse the repository at this point in the history
…ild (#12288)
  • Loading branch information
jaysoo authored and FrozenPandaz committed Sep 28, 2022
1 parent ac4cf51 commit 65dc805
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/generated/packages/esbuild.json
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
7 changes: 7 additions & 0 deletions packages/esbuild/src/executors/esbuild/schema.json
Expand Up @@ -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,
Expand Down

0 comments on commit 65dc805

Please sign in to comment.