UNPKG

vde-layout

Version:

Terminal multiplexer layout management tool for VDE (Vibe Coding Development Environment)

24 lines 657 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const cli_1 = require("./cli"); async function main() { const cli = new cli_1.CLI(); try { await cli.run(process.argv.slice(2)); } catch (error) { if (error instanceof Error) { console.error("Error:", error.message); if (process.env.VDE_DEBUG === "true") { console.error(error.stack); } } else { console.error("An unexpected error occurred:", String(error)); } process.exit(1); } } void main(); //# sourceMappingURL=index.js.map