Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Nx Plugin
All 7 FrontMCP Nx executors for building, testing, and deploying
nx affected
build
frontmcp build
build-exec
frontmcp build --target node
dev
frontmcp dev
serve
frontmcp start
test
frontmcp test
inspector
frontmcp inspector
deploy
project.json
{ "name": "my-app", "targets": { "build": { "executor": "@frontmcp/nx:build", "outputs": ["{projectRoot}/dist"], "options": { "entry": "{projectRoot}/src/main.ts", "outputPath": "{projectRoot}/dist" } }, "dev": { "executor": "@frontmcp/nx:dev", "options": { "entry": "{projectRoot}/src/main.ts" } }, "test": { "executor": "@frontmcp/nx:test", "options": { "runInBand": true } } } }
# Run a specific target nx build my-app nx dev my-app nx test my-app # Run across all projects nx run-many -t build nx run-many -t test # Run only affected projects nx affected -t test
Was this page helpful?