gitbeaker/nx.json
Justin Dalrymple 3808fbbbc4
Latest release housekeeping v3 (#3229)
* More CI tweaks, and additional CLI restructuring
* Add 'Camelize'  from '@gitbeaker/core' export (#3231)

---------

Co-authored-by: Rafael Mello <merorafael@gmail.com>
2023-04-29 14:19:43 -04:00

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"
}