From daab0762c5458639a62de8d7c284903dcfd41a54 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 1 May 2025 00:30:12 -0500 Subject: [PATCH] feat: put output on separate newlines --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a2f7614..959cbbf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,7 +41,7 @@ try { const totalRemoved = committedDiff.removed + uncommittedDiff.removed; const totalChanged = totalAdded + totalRemoved; - const output = `Total lines changed: ${totalChanged} (Committed: +${committedDiff.added}/-${committedDiff.removed}, Uncommitted: +${uncommittedDiff.added}/-${uncommittedDiff.removed})`; + const output = `Total lines changed: ${totalChanged}\nCommitted: +${committedDiff.added}/-${committedDiff.removed}\nUncommitted: +${uncommittedDiff.added}/-${uncommittedDiff.removed}`; console.clear(); console.log(output);