Skip to content

Commit

Permalink
shorten go name in in table
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Jul 27, 2024
1 parent 4b4ad24 commit 5c8e388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ function formatDeps(deps: DepsByMode) {
if (seen.has(id)) continue;
seen.add(id);
arr.push([
name,
mode === "go" ? basename(name) : name,
highlightDiff(data.old, data.new, red),
highlightDiff(data.new, data.old, green),
data.age || "",
Expand Down

0 comments on commit 5c8e388

Please sign in to comment.