34 lines
1.2 KiB
JSON
34 lines
1.2 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": {
|
|
"run-commands": {
|
|
"implementation": "./src/executors/run-commands/run-commands.impl",
|
|
"schema": "./src/executors/run-commands/schema.json",
|
|
"description": "Run any custom commands with Nx."
|
|
},
|
|
"counter": {
|
|
"implementation": "./src/executors/counter/counter.impl",
|
|
"batchImplementation": "./src/executors/counter/counter.impl#batchCounter",
|
|
"schema": "./src/executors/counter/schema.json",
|
|
"description": "A dummy executor useful for E2E tests.",
|
|
"hidden": true
|
|
},
|
|
"run-script": {
|
|
"implementation": "./src/executors/run-script/run-script.impl",
|
|
"schema": "./src/executors/run-script/schema.json",
|
|
"description": "Run an NPM script using Nx."
|
|
}
|
|
}
|
|
}
|