mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
chore: fix repo biome lint errors (#804)
This commit is contained in:
@@ -76,7 +76,7 @@ try {
|
||||
const percentOfTarget = ((gzippedSize / 1024 / targetKB) * 100).toFixed(1);
|
||||
|
||||
// Display results
|
||||
console.log('\n' + '='.repeat(50));
|
||||
console.log(`\n${'='.repeat(50)}`);
|
||||
console.log(`📊 Bundle Size Report - ${label}`);
|
||||
console.log('='.repeat(50));
|
||||
console.log(`Minified: ${formatSize(minifiedSize)}`);
|
||||
@@ -85,7 +85,7 @@ try {
|
||||
console.log(`Target: ${targetKB} KB (minified + gzipped)`);
|
||||
console.log(`Used: ${percentOfTarget}%`);
|
||||
console.log(`Remaining: ${formatSize(targetKB * 1024 - gzippedSize)}`);
|
||||
console.log('='.repeat(50) + '\n');
|
||||
console.log(`${'='.repeat(50)}\n`);
|
||||
|
||||
// Status indicator
|
||||
if (gzippedSize / 1024 > targetKB) {
|
||||
|
||||
Reference in New Issue
Block a user