UNPKG

@inlang/cli

Version:

![inlang CLI header image](https://cdn.jsdelivr.net/gh/opral/monorepo@latest/inlang/packages/cli/assets/cli-header.jpg)

14 lines (10 loc) 258 B
#!/usr/bin/env node // the comment above signals unix environments which interpreter // to use when executing this file (node) import { cli } from "../dist/main.js"; try { cli.parse(); } catch (error) { console.log("catch"); console.error(error); }