23 lines
695 B
JSON
23 lines
695 B
JSON
{
|
|
"builders": {
|
|
"run-commands": {
|
|
"implementation": "./src/executors/run-commands/compat",
|
|
"schema": "./src/executors/run-commands/schema.json",
|
|
"description": "Run any custom commands with 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",
|
|
"schema": "./src/executors/counter/schema.json",
|
|
"description": "A dummy executor useful for e2e tests",
|
|
"hidden": true
|
|
}
|
|
}
|
|
}
|