fix(mosaic): remove unused hasUpdate variable in formatAllPackagesTable
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful

Fixes lint error:
@typescript-eslint/no-unused-vars on hasUpdate
This commit is contained in:
Jarvis
2026-04-04 22:01:01 -05:00
parent 774b76447d
commit 5cfccc2ead

View File

@@ -441,7 +441,6 @@ export function getInstallAllCommand(outdated: PackageUpdateResult[]): string {
export function formatAllPackagesTable(results: PackageUpdateResult[]): string {
if (results.length === 0) return 'No @mosaicstack/* packages found.';
const hasUpdate = results.some((r) => r.updateAvailable);
const nameWidth = Math.max(...results.map((r) => r.package.length), 10);
const verWidth = 10;