Skip to content

Commit 010ddee

Browse files
authoredApr 26, 2023
feat(core): update nx schema to include more tasksRunnerOptions options (#16591)
1 parent 0add1a1 commit 010ddee

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed
 

‎packages/nx/schemas/nx-schema.json

+33-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,39 @@
190190
},
191191
"options": {
192192
"type": "object",
193-
"description": "Default options for the runner."
193+
"description": "Default options for the runner.",
194+
"properties": {
195+
"accessToken": {
196+
"type": "string"
197+
},
198+
"captureStderr": {
199+
"type": "boolean",
200+
"description": "Defines whether the cache captures stderr or just stdout."
201+
},
202+
"parallel": {
203+
"type": "number",
204+
"description": "Defines the max number of targets ran in parallel."
205+
},
206+
"cacheableOperations": {
207+
"type": "array",
208+
"description": "Defines the list of targets/operations that are cached by Nx.",
209+
"items": {
210+
"type": "string"
211+
}
212+
},
213+
"cacheDirectory": {
214+
"type": "string",
215+
"description": "Defines where the local cache is stored."
216+
},
217+
"skipNxCache": {
218+
"type": "boolean",
219+
"description": "Defines whether the Nx Cache should be skipped."
220+
},
221+
"encryptionKey": {
222+
"type": "string",
223+
"description": "Defines an encryption key to support end-to-end encryption of your cloud cache. You may also provide an environment variable with the key NX_CLOUD_ENCRYPTION_KEY that contains an encryption key as its value. The Nx Cloud task runner normalizes the key length, so any length of key is acceptable."
224+
}
225+
}
194226
}
195227
},
196228
"additionalProperties": false

1 commit comments

Comments
 (1)

vercel[bot] commented on Apr 26, 2023

@vercel[bot]

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.