cd175ddae2
refs https://github.com/TryGhost/DevOps/issues/45 - if this file changes, we presumably want to re-run any builds because it's possible the typescript config has changed
38 lines
888 B
JSON
38 lines
888 B
JSON
{
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": [
|
|
"build:ts",
|
|
"lint",
|
|
"test",
|
|
"test:unit"
|
|
],
|
|
"cacheDirectory": ".nxcache"
|
|
}
|
|
}
|
|
},
|
|
"namedInputs": {
|
|
"default": [
|
|
"{projectRoot}/**/*",
|
|
"{workspaceRoot}/ghost/tsconfig.json"
|
|
]
|
|
},
|
|
"targetDefaults": {
|
|
"build:ts": {
|
|
"dependsOn": [
|
|
"^build:ts"
|
|
],
|
|
"inputs": [
|
|
"default",
|
|
"^default"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/build"
|
|
]
|
|
}
|
|
},
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json"
|
|
}
|