UNPKG

@nxrocks/nx-ktor

Version:

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

35 lines (34 loc) 998 B
{ "$schema": "http://json-schema.org/schema", "outputCapture": "pipe", "$id": "@nxrocks/nx-ktor:link", "description": "Link Projects Generator.", "title": "Creates an implicit link between a `source` Ktor project and another `target` project within the workspace", "type": "object", "properties": { "sourceProjectName": { "type": "string", "description": "The name of the source (Ktor) project to link from.", "$default": { "$source": "argv", "index": 0 }, "x-dropdown": "projects", "x-prompt": "What name of the source (Ktor) project to link from?" }, "targetProjectName": { "type": "string", "description": "The name of the target project to link to.", "$default": { "$source": "argv", "index": 1 }, "x-dropdown": "projects", "x-prompt": "What name of the target project to link to?" } }, "required": [ "sourceProjectName", "targetProjectName" ] }