From ee42a6512f76c5ab0b4092ac597a04de078082ad Mon Sep 17 00:00:00 2001 From: Federico Builes Date: Tue, 11 Oct 2022 14:50:55 +0200 Subject: [PATCH] Show the dependency name instead of the manifest. --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 6f6d300..a7c8d9e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -192,7 +192,7 @@ function renderScannedDependency(change: Change): string { } as const )[changeType] - return `${styles.color[color].open}${icon} ${change.manifest}@${change.version}${styles.color[color].close}` + return `${styles.color[color].open}${icon} ${change.name}@${change.version}${styles.color[color].close}` } function printScannedDependencies(changes: Changes): void {