UNPKG

jec-cli

Version:

CLI tool for managing JEC projects.

13 lines (12 loc) 396 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const childProcess = require("child_process"); const path = require("path"); class Start { constructor() { } run(argv) { const scriptPath = path.join(process.cwd(), "server/com/onsoft/glasscat/cli/scripts/start-server"); childProcess.fork(scriptPath); } } exports.Start = Start;