32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"builders": {
|
|
"run-commands": {
|
|
"implementation": "./src/executors/run-commands/compat",
|
|
"schema": "./src/executors/run-commands/schema.json",
|
|
"description": "Run any custom commands with Nx."
|
|
},
|
|
"run-script": {
|
|
"implementation": "./src/executors/run-script/compat",
|
|
"schema": "./src/executors/run-script/schema.json",
|
|
"description": "Run an NPM script using Nx."
|
|
}
|
|
},
|
|
"executors": {
|
|
"noop": {
|
|
"implementation": "./src/executors/noop/noop.impl",
|
|
"schema": "./src/executors/noop/schema.json",
|
|
"description": "An executor that does nothing"
|
|
},
|
|
"run-commands": {
|
|
"implementation": "./src/executors/run-commands/run-commands.impl",
|
|
"schema": "./src/executors/run-commands/schema.json",
|
|
"description": "Run any custom commands with Nx."
|
|
},
|
|
"run-script": {
|
|
"implementation": "./src/executors/run-script/run-script.impl",
|
|
"schema": "./src/executors/run-script/schema.json",
|
|
"description": "Run an NPM script using Nx."
|
|
}
|
|
}
|
|
}
|