1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-11 09:25:26 +03:00
lens/nx.json
Sebastian Malton f2247adfdb chore: Fix dev mode of open-lens running is circles
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-05-15 15:58:35 -04:00

45 lines
646 B
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
]
},
"build:app": {
"dependsOn": [
"^build"
]
},
"test:integration": {
"dependsOn": [
"^build"
]
},
"build:docs": {
"dependsOn": [
"^build"
]
},
"lint": {
"dependsOn": [
"^build"
]
},
"test:unit": {
"dependsOn": [
"^build"
]
}
}
}