mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
* More CI tweaks, and additional CLI restructuring * Add 'Camelize' from '@gitbeaker/core' export (#3231) --------- Co-authored-by: Rafael Mello <merorafael@gmail.com>
54 lines
937 B
JSON
54 lines
937 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": {
|
|
"test:unit": {
|
|
"outputs": [
|
|
"{projectRoot}/coverage",
|
|
"{projectRoot}/reports"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"outputs": [
|
|
"{projectRoot}/coverage",
|
|
"{projectRoot}/reports"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/dist",
|
|
]
|
|
},
|
|
"test:types": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
"test:e2e": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
},
|
|
"defaultBase": "main"
|
|
}
|