UNPKG

@nxrocks/nx-ktor

Version:

Nx plugin to generate, run, package, build (and more) Ktor projects inside your Nx workspace

66 lines (65 loc) 2.33 kB
{ "$schema": "http://json-schema.org/schema", "executors": { "build": { "implementation": "./src/executors/build/executor", "schema": "./src/executors/build/schema.json", "description": "build executor" }, "build-image": { "implementation": "./src/executors/build-image/executor", "schema": "./src/executors/build-image/schema.json", "description": "build-image executor" }, "check-format": { "implementation": "./src/executors/check-format/executor", "schema": "./src/executors/check-format/schema.json", "description": "check-format executor" }, "clean": { "implementation": "./src/executors/clean/executor", "schema": "./src/executors/clean/schema.json", "description": "clean executor" }, "format": { "implementation": "./src/executors/format/executor", "schema": "./src/executors/format/schema.json", "description": "format executor" }, "install": { "implementation": "./src/executors/install/executor", "schema": "./src/executors/install/schema.json", "description": "install executor" }, "publish-image": { "implementation": "./src/executors/publish-image/executor", "schema": "./src/executors/publish-image/schema.json", "description": "publish-image executor" }, "publish-image-locally": { "implementation": "./src/executors/publish-image-locally/executor", "schema": "./src/executors/publish-image-locally/schema.json", "description": "publish-image-locally executor" }, "run": { "implementation": "./src/executors/run/executor", "schema": "./src/executors/run/schema.json", "description": "run executor" }, "serve": { "implementation": "./src/executors/run/executor", "schema": "./src/executors/serve/schema.json", "description": "Executor to serve the project (alias to 'run' executor)" }, "run-docker": { "implementation": "./src/executors/run-docker/executor", "schema": "./src/executors/run-docker/schema.json", "description": "run-docker executor" }, "test": { "implementation": "./src/executors/test/executor", "schema": "./src/executors/test/schema.json", "description": "test executor" } } }