From a398e56356a37552c1ebae254b1a8eea233cd24b Mon Sep 17 00:00:00 2001 From: Alex Varchuk Date: Wed, 27 Jul 2022 18:26:14 +0300 Subject: [PATCH] chore: improve notification message --- cli/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cli/index.ts b/cli/index.ts index 7bd03b4f..43a32b96 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -479,5 +479,8 @@ function notifyUpdateCliVersion() { updateCheckInterval: 0, shouldNotifyInNpmScript: true, }); - notifier.notify(); + notifier.notify({ + message: + 'Run `{updateCommand}` to update.\nChangelog: https://github.com/Redocly/redoc/releases/tag/{latestVersion}', + }); }