1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

chore: Fix nx target defaults

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-05-26 15:32:51 -04:00
parent 645e274d72
commit 4d416162ed

10
nx.json
View File

@ -17,27 +17,27 @@
},
"build:app": {
"dependsOn": [
"^build"
"build"
]
},
"test:integration": {
"dependsOn": [
"^build"
"build:app"
]
},
"build:docs": {
"dependsOn": [
"^build"
"build"
]
},
"lint": {
"dependsOn": [
"^build"
"build"
]
},
"test:unit": {
"dependsOn": [
"^build"
"build"
]
}
}