Files
nrwl--nx/packages/nx/executors.json
T
2026-07-13 12:38:36 +08:00

20 lines
663 B
JSON

{
"executors": {
"noop": {
"implementation": "./dist/src/executors/noop/noop.impl",
"schema": "./dist/src/executors/noop/schema.json",
"description": "An executor that does nothing"
},
"run-commands": {
"implementation": "./dist/src/executors/run-commands/run-commands.impl",
"schema": "./dist/src/executors/run-commands/schema.json",
"description": "Run any custom commands with Nx."
},
"run-script": {
"implementation": "./dist/src/executors/run-script/run-script.impl",
"schema": "./dist/src/executors/run-script/schema.json",
"description": "Run an NPM script using Nx."
}
}
}