1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/nx.json
Iku-turso 1755c498de chore: Make linkable push happen automatically for development
Note that because lerna-running the non-cached script "linkable-push"
it gets run only when required, and after its dependency script "build"
is ran.

Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>

Signed-off-by: Mikko Aspiala <mikko.aspiala@gmail.com>
2023-06-06 11:55:52 +03:00

72 lines
1.1 KiB
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build"
]
}
}
},
"namedInputs": {
"productionFiles": [
"default",
"!{projectRoot}/**/*.test.ts",
"!{projectRoot}/**/*.test.tsx",
"!{projectRoot}/**/*.md"
]
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"productionFiles",
{
"env": "NODE_ENV"
}
],
"outputs": [
"dist"
]
},
"build:app": {
"dependsOn": [
"^build"
]
},
"linkable-push": {
"dependsOn": [
"build"
],
"inputs": [],
"outputs": []
},
"test:integration": {
"dependsOn": [
"^build"
]
},
"build:docs": {
"dependsOn": [
"^build"
]
},
"lint": {
"dependsOn": [
"^build"
]
},
"test:unit": {
"dependsOn": [
"^build"
]
}
}
}