fix(core): add release.projects option to schema (#20645)
This commit is contained in:
parent
61429c05a6
commit
d11a22bbd6
@ -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": {
|
||||
@ -113,14 +129,16 @@
|
||||
"projects": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1
|
||||
"type": "string",
|
||||
"description": "A project name"
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
"type": "array",
|
||||
"description": "An array of project names",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -421,6 +439,7 @@
|
||||
{
|
||||
"type": "array",
|
||||
"description": "An array of project names",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user