gitbeaker/nx.json
Justin Dalrymple 7f1648802b Major Release v36.0.0 - Improved Typing, and API support (16.0) (#2258)
Adding extensive typing support
Unified browser and Node.JS implementations
Adding support of Gitlab API 16.0
2023-04-26 12:58:56 -04:00

39 lines
634 B
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"lint",
"lint:fix",
"format",
"format:fix",
"test:types",
"test:unit",
"test:integration",
"test:e2e",
"build:"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
]
},
"test:types": {
"dependsOn": [
"build"
]
},
"test:e2e": {
"dependsOn": [
"build"
]
}
},
"defaultBase": "main"
}