UNPKG

@nxrocks/nx-ktor

Version:

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

15 lines 597 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.installExecutor = installExecutor; const path = require("path"); const ktor_utils_1 = require("../../utils/ktor-utils"); async function installExecutor(options, context) { const root = path.resolve(context.root, options.root); return (0, ktor_utils_1.runKtorPluginCommand)('install', options.args, { cwd: root, ignoreWrapper: options.ignoreWrapper, runFromParentModule: options.runFromParentModule, }); } exports.default = installExecutor; //# sourceMappingURL=executor.js.map