UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

36 lines (35 loc) 1.35 kB
{ "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.", "x-deprecated": "Use nx:run-commands instead. This will be removed in v16." }, "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.", "x-deprecated": "Use nx:run-script instead. This will be removed in v16." } } }