mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
Adding extensive typing support Unified browser and Node.JS implementations Adding support of Gitlab API 16.0
39 lines
634 B
JSON
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"
|
|
}
|