fix(core): fix externalDependencies schema type (#17699)

This commit is contained in:
Miroslav Jonaš 2023-06-21 15:47:58 +02:00 committed by GitHub
parent 53a37d47e2
commit 5af50b966e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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."
}
},

View File

@ -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."
}
},