docs(core): schema update to disable nx cloud (#28432)

Add `neverConnectToCloud` to the `nx-schema.json`

Fixes #28188
This commit is contained in:
Isaac Mann 2024-10-15 09:31:04 -04:00 committed by GitHub
parent d1ff5fd784
commit 3d44a1d5b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 3 deletions

View File

@ -171,7 +171,7 @@ Named inputs targets can refer to reduce duplication
`Optional` **neverConnectToCloud**: `boolean`
Set this to false to disable connection to Nx Cloud
Set this to true to disable connection to Nx Cloud
---

View File

@ -211,7 +211,7 @@ Named inputs targets can refer to reduce duplication
`Optional` **neverConnectToCloud**: `boolean`
Set this to false to disable connection to Nx Cloud
Set this to true to disable connection to Nx Cloud
#### Inherited from

View File

@ -89,6 +89,10 @@
"type": "string",
"description": "Specifies the encryption key used to encrypt artifacts data before sending it to nx cloud."
},
"neverConnectToCloud": {
"type": "boolean",
"description": "Set this to true to disable all connections to Nx Cloud."
},
"parallel": {
"type": "number",
"description": "Specifies how many tasks are ran in parallel by Nx for the default tasks runner."

View File

@ -507,7 +507,7 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
useInferencePlugins?: boolean;
/**
* Set this to false to disable connection to Nx Cloud
* Set this to true to disable connection to Nx Cloud
*/
neverConnectToCloud?: boolean;