@lipsurf/cli
Version:
Build LipSurf plugins to add custom voice commands to any website.
14 lines (13 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const transform_1 = require("./transform");
process.on("message", (msg) => {
// console.log("Message from parent:", msg);
(0, transform_1.transformJSToPlugin)(...msg)
.then(() => {
process.exit(0);
})
.catch(() => {
process.exit(1);
});
});