Skip to content

Commit

Permalink
fix(core): fix externalDependencies schema type (nrwl#17699)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav authored Jun 21, 2023
1 parent 53a37d4 commit 5af50b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/nx/schemas/nx-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@
"type": "object",
"properties": {
"externalDependencies": {
"type": "string",
"type": "array",
"items": { "type": "string" },
"description": "The list of external dependencies that our target depends on for `nx:run-commands` and community plugins."
}
},
Expand Down
3 changes: 2 additions & 1 deletion packages/nx/schemas/project-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@
"type": "object",
"properties": {
"externalDependencies": {
"type": "string",
"type": "array",
"items": { "type": "string" },
"description": "The list of external dependencies that our target depends on for `nx:run-commands` and community plugins."
}
},
Expand Down

0 comments on commit 5af50b9

Please sign in to comment.