chore: reset history
This commit is contained in:
commit
3a0b1a80c8
10 changed files with 355 additions and 0 deletions
13
index.ts
Normal file
13
index.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { Command } from 'commander';
|
||||
import { registerCommands } from './cmd';
|
||||
|
||||
const program = new Command();
|
||||
|
||||
program
|
||||
.name('string-util')
|
||||
.description('CLI to some JavaScript string utilities')
|
||||
.version('0.8.0');
|
||||
|
||||
registerCommands(program);
|
||||
|
||||
program.parse();
|
Loading…
Add table
Add a link
Reference in a new issue