Skip to content

Commit

Permalink
fix(bundling): add missing assets ignore option to @nrwl/esbuild:esbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored and Jack Hsu committed Sep 28, 2022
1 parent 56957cc commit 8db2aee
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 8db2aee

Please sign in to comment.