laconic-registry-cli/src/index.ts

9 lines
164 B
TypeScript
Raw Normal View History

2022-04-22 12:22:17 +00:00
import yargs from 'yargs/yargs';
import { hideBin } from 'yargs/helpers';
yargs(hideBin(process.argv))
.commandDir('cmds')
.demandCommand()
.help()
.argv;