1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/nx.json
Jari Kolehmainen 84beed39dd yarn run dev
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2023-01-13 13:46:34 +02:00

36 lines
534 B
JSON

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