1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/nx.json
Jari Kolehmainen d2e6d739e3 refactor/fix integration tests
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2023-01-13 09:30:29 +02:00

33 lines
495 B
JSON

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