remove default behavior for add help command closes #2

This commit is contained in:
Tommy Parnell
2022-07-23 17:15:57 -04:00
parent 0712c64c77
commit 4394374f60

View File

@@ -7,7 +7,6 @@ const program = new Command();
program.description('Our New CLI');
program.option('-v, --verbose', 'verbose logging');
program.version('0.0.1');
program.addHelpCommand()
program.addCommand(widgets);
async function main() {