Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): update nx schema to include more tasksRunnerOptions options
Browse files Browse the repository at this point in the history
Cammisuli committed Apr 26, 2023
1 parent 3703846 commit d91e351
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion packages/nx/schemas/nx-schema.json
Original file line number Diff line number Diff line change
@@ -161,7 +161,27 @@
},
"options": {
"type": "object",
"description": "Default options for the runner."
"description": "Default options for the runner.",
"properties": {
"accessToken": {
"type": "string"
},
"parallel": {
"type": "number"
},
"cacheableOperations": {
"type": "array",
"items": {
"type": "string"
}
},
"cacheDirectory": {
"type": "string"
},
"skipNxCache": {
"type": "boolean"
}
}
}
},
"additionalProperties": false

0 comments on commit d91e351

Please sign in to comment.