From 0712c64c77cb8cdee984e7d8e3293c43f98015be Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 23 Jul 2022 17:15:11 -0400 Subject: [PATCH] fix description closes #3 --- index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index a4573ce..717ccf0 100644 --- a/index.ts +++ b/index.ts @@ -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()