50951d6eae
refs https://github.com/TryGhost/DevOps/issues/102 - we've been seeing various bugs relating to the Nx daemon, and when it crashes it nukes the entire dev command, which we'd like to avoid - this should disable the daemon until some of these issues are fixed
40 lines
960 B
JSON
40 lines
960 B
JSON
{
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": [
|
|
"build",
|
|
"build:ts",
|
|
"lint",
|
|
"test",
|
|
"test:unit"
|
|
],
|
|
"useDaemonProcess": false,
|
|
"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"
|
|
}
|