UNPKG

lhci-collect

Version:

15 lines 384 B
#!/usr/bin/env node import { Command } from "commander"; const program = new Command(); program .name('lhci-collect') .description("Example CLI with ESM & TypeScript") .version("0.1.0"); program .command("greet <name>") .description("Greet someone") .action((name) => { console.log(`Hello, ${name}!`); }); program.parse(); //# sourceMappingURL=index.js.map