1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/nx.json
Sebastian Malton d0f60fdd76 Fix up more dev mode
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-03-30 11:25:05 -04:00

53 lines
933 B
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
"dev",
"prepare:lint"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
]
},
"build:docs": {
"dependsOn": [
"^build"
]
},
"dev": {
"dependsOn": [
"^dev"
],
"outputs": [
"{workspaceRoot}/dist",
"{workspaceRoot}/static/build",
"{workspaceRoot}/binaries",
"{workspaceRoot}/build/webpack"
],
"inputs": [
"{workspaceRoot}/src/**/*.ts",
"{workspaceRoot}/src/**/*.tsx",
"{workspaceRoot}/index.ts"
]
},
"lint": {
"dependsOn": [
"^prepare:test"
]
},
"test:unit": {
"dependsOn": [
"^prepare:test"
]
}
}
}