From b8c36691b5ef36becf22be1810a99d636bb3e48d Mon Sep 17 00:00:00 2001 From: lihbr Date: Wed, 2 Jun 2021 11:12:20 +0200 Subject: [PATCH] feat: improve help message --- src/commands/help.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/commands/help.ts b/src/commands/help.ts index 82abc61..d485a0d 100644 --- a/src/commands/help.ts +++ b/src/commands/help.ts @@ -19,9 +19,11 @@ export const help = (sections: HelpSection[]): void => { sections.unshift({ body: `\nšŸ“š Dico CLI\n ${chalk.cyanBright( "Read the docs:" - )} https://docs.dico.app/cli${ + )} https://docs.dico.app/cli\n ${chalk.cyan( + "Any questions, issues?" + )} https://github.com/dico-app/dico-cli/discussions${ config.endpoint - ? `\n ${chalk.cyan("Endpoint override:")} ${config.endpoint}` + ? `\n ${chalk.magentaBright("Endpoint override:")} ${config.endpoint}` : "" }` });