From 0423a6d162f658f45a5080c2b0e5000bbf17d3e3 Mon Sep 17 00:00:00 2001 From: Saurabh Date: Mon, 24 Jul 2023 10:19:41 +0200 Subject: [PATCH] Update default help mode to 'options'. Closes #5182 --- src/cli/Cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/Cli.ts b/src/cli/Cli.ts index bff91a4116b..96e553a126a 100644 --- a/src/cli/Cli.ts +++ b/src/cli/Cli.ts @@ -41,7 +41,7 @@ export class Cli { private optionsFromArgs: { options: minimist.ParsedArgs } | undefined; public commandsFolder: string = ''; private static instance: Cli; - private static defaultHelpMode = 'full'; + private static defaultHelpMode = 'options'; public static helpModes: string[] = ['options', 'examples', 'remarks', 'response', 'full']; public spinner = ora('Running command...');