-
Hey, Here's my {
"affected": {
"defaultBase": "main"
},
"npmScope": "@my-scope",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default"
}
},
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": [
"^build"
]
},
"start": {
"dependsOn": [
"^build"
]
}
},
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [
"{workspaceRoot}/pnpm-workspace.yaml",
"{workspaceRoot}/pnpm-lock.yaml",
"{workspaceRoot}/nx.json"
],
"production": [
"default"
]
}
} Now I get: Custom task runners will no longer be supported in Nx 21. if I run i.e. Am I wrong? If I remove the For my simple setting, it makes no sense at all to rely on a cloud solution. I am a single user. But I need the caching feature. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi there, Remove the Thank you! |
Beta Was this translation helpful? Give feedback.
Hi there,
Remove the
tasksRunnerOptions
section from yournx.json
and the issue will be resolved.Thank you!