From 5f7ab6c40419abb5b3a46a7a330dc82d1ed9c52d Mon Sep 17 00:00:00 2001 From: Juri Leino Date: Fri, 17 Feb 2023 19:53:08 +0100 Subject: [PATCH] feat: hide extra info for options --- cli.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cli.js b/cli.js index 961576f..df5b4c4 100755 --- a/cli.js +++ b/cli.js @@ -58,6 +58,7 @@ const parser = yargs(hideBin(process.argv)) .completion('completion', false) .command(commands) .demandCommand(1) + .usageConfiguration({ 'hide-types': true }) // .recommendCommands() .strict(false) .fail(false)