Skip to content

Commit

Permalink
fix(core): add release.projects option to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Dec 7, 2023
1 parent cd96da8 commit 5cfa193
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions packages/nx/schemas/nx-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,22 @@
"description": "Configuration for the nx release commands.",
"additionalProperties": false,
"properties": {
"projects": {
"oneOf": [
{
"type": "string",
"description": "A project name"
},
{
"type": "array",
"description": "An array of project names",
"minItems": 1,
"items": {
"type": "string"
}
}
]
},
"groups": {
"type": "object",
"additionalProperties": {
Expand All @@ -112,15 +128,17 @@
},
"projects": {
"oneOf": [
{
"type": "string",
"description": "A project name"
},
{
"type": "array",
"description": "An array of project names",
"minItems": 1,
"items": {
"type": "string"
},
"minItems": 1
},
{
"type": "string"
}
}
]
},
Expand Down Expand Up @@ -421,6 +439,7 @@
{
"type": "array",
"description": "An array of project names",
"minItems": 1,
"items": {
"type": "string"
}
Expand Down

0 comments on commit 5cfa193

Please sign in to comment.