1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/nx.json
Jari Kolehmainen f23c325130 fix test:unit nx dependency
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2023-01-25 08:51:52 -05:00

37 lines
558 B
JSON

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