UNPKG

1.18 kBJSONView Raw
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 },
20 "counter": {
21 "implementation": "./src/executors/counter/counter.impl",
22 "batchImplementation": "./src/executors/counter/counter.impl#batchCounter",
23 "schema": "./src/executors/counter/schema.json",
24 "description": "A dummy executor useful for E2E tests.",
25 "hidden": true
26 },
27 "run-script": {
28 "implementation": "./src/executors/run-script/run-script.impl",
29 "schema": "./src/executors/run-script/schema.json",
30 "description": "Run an NPM script using Nx."
31 }
32 }
33}