UNPKG

@inlang/paraglide-js

Version:

[![NPM Downloads](https://img.shields.io/npm/dw/%40inlang%2Fparaglide-js?logo=npm&logoColor=red&label=npm%20downloads)](https://www.npmjs.com/package/@inlang/paraglide-js) [![GitHub Issues](https://img.shields.io/github/issues-closed/opral/paraglide-js?lo

11 lines 457 B
import { Command } from "commander"; import { compileCommand } from "./commands/compile/command.js"; import { ENV_VARIABLES } from "../services/env-variables/index.js"; import { initCommand } from "./commands/init/command.js"; export const cli = new Command() .name("paraglide-js") .addCommand(compileCommand) .addCommand(initCommand) .showHelpAfterError() .version(ENV_VARIABLES.PARJS_PACKAGE_VERSION); //# sourceMappingURL=index.js.map