From b3d95bf29ed4259d5edcb2195c6dfa8c9d0970ff Mon Sep 17 00:00:00 2001 From: hasundue Date: Sun, 22 Oct 2023 21:33:20 +0900 Subject: [PATCH] style(cli): fix code format --- cli.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli.ts b/cli.ts index 82952fa7..378d6e1f 100644 --- a/cli.ts +++ b/cli.ts @@ -311,7 +311,9 @@ function _summary( } const groups = sequence.commits.map((commit) => commit.group).join(", "); const full = _formatPrefix(options.prefix) + `Update ${groups}`; - return (full.length <= 50) ? full : _formatPrefix(options.prefix) + "Update dependencies"; + return (full.length <= 50) + ? full + : _formatPrefix(options.prefix) + "Update dependencies"; } function _report(sequence: GitCommitSequence): string {