chore(ci): remove forced minimum fill on bundle size bars

This commit is contained in:
Rahim
2026-02-13 01:20:24 +11:00
parent 90d881cec2
commit 34c87beaaf
+1 -1
View File
@@ -82,7 +82,7 @@ jobs:
// Size bar: proportional block characters
function sizeBar(bytes, maxBytes) {
const width = 8;
const filled = Math.max(1, Math.round((bytes / maxBytes) * width));
const filled = Math.round((bytes / maxBytes) * width);
return '█'.repeat(filled) + '░'.repeat(width - filled);
}