piral-cli
Version:
The standard CLI for creating and building a Piral instance or a Pilet.
11 lines • 362 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const start_1 = require("./start");
process.on('message', async ({ type, select, args }) => {
if (type === 'start') {
const from = eval(select);
process.argv.splice(2, 0, ...args);
await (0, start_1.start)(from);
}
});
//# sourceMappingURL=runner.js.map