fix description closes #3

This commit is contained in:
Tommy Parnell
2022-07-23 17:15:11 -04:00
parent 2e80a38aa9
commit 0712c64c77

View File

@@ -3,7 +3,8 @@
import { Command } from 'commander'
import { spinnerError, stopSpinner } from './spinner';
import { widgets } from './widgets';
const program = new Command('Our New CLI');
const program = new Command();
program.description('Our New CLI');
program.option('-v, --verbose', 'verbose logging');
program.version('0.0.1');
program.addHelpCommand()