1
0
mirror of https://github.com/lensapp/lens.git synced 2024-10-26 09:47:18 +03:00
lens/nx.json
Sebastian Malton 91354eae01 chore: Fix build of open-lens
- Remove need for using relative paths during build

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-05-09 09:55:25 -04:00

40 lines
580 B
JSON

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