1 | {
|
2 | "builders": {
|
3 | "run-commands": {
|
4 | "implementation": "./src/executors/run-commands/compat",
|
5 | "schema": "./src/executors/run-commands/schema.json",
|
6 | "description": "Run any custom commands with Nx."
|
7 | },
|
8 | "run-script": {
|
9 | "implementation": "./src/executors/run-script/compat",
|
10 | "schema": "./src/executors/run-script/schema.json",
|
11 | "description": "Run an NPM script using Nx."
|
12 | }
|
13 | },
|
14 | "executors": {
|
15 | "run-commands": {
|
16 | "implementation": "./src/executors/run-commands/run-commands.impl",
|
17 | "schema": "./src/executors/run-commands/schema.json",
|
18 | "description": "Run any custom commands with Nx.",
|
19 | "x-deprecated": "Use nx:run-commands instead. This will be removed in v16."
|
20 | },
|
21 | "counter": {
|
22 | "implementation": "./src/executors/counter/counter.impl",
|
23 | "batchImplementation": "./src/executors/counter/counter.impl#batchCounter",
|
24 | "schema": "./src/executors/counter/schema.json",
|
25 | "description": "A dummy executor useful for E2E tests.",
|
26 | "hidden": true
|
27 | },
|
28 | "run-script": {
|
29 | "implementation": "./src/executors/run-script/run-script.impl",
|
30 | "schema": "./src/executors/run-script/schema.json",
|
31 | "description": "Run an NPM script using Nx.",
|
32 | "x-deprecated": "Use nx:run-script instead. This will be removed in v16."
|
33 | }
|
34 | }
|
35 | }
|