mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Janne Savolainen <janne.savolainen@live.fi> Signed-off-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
61 lines
928 B
JSON
61 lines
928 B
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"
|
|
}
|
|
]
|
|
},
|
|
"build:app": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"build:docs": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
}
|
|
}
|
|
}
|