From 39847fa7450da220e6c219e9cd5d4802159f0a5c Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Wed, 24 Dec 2025 16:22:05 -0500 Subject: [PATCH 1/2] fix(ci): use `##` instead of `#` when comparing Signed-off-by: Aviv Keller --- apps/site/scripts/compare-size/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/scripts/compare-size/index.mjs b/apps/site/scripts/compare-size/index.mjs index f67b78a1a4c1a..1ce5d445bb023 100644 --- a/apps/site/scripts/compare-size/index.mjs +++ b/apps/site/scripts/compare-size/index.mjs @@ -82,7 +82,7 @@ function reportDiff({ assets: oldAssets }, { assets: newAssets }) { const totalDelta = newTotal - oldTotal; // Summary table - let report = `# 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`; + let report = `## 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`; report += `| Old Total Size | ${formatBytes(oldTotal)} |\n`; report += `| New Total Size | ${formatBytes(newTotal)} |\n`; report += `| Delta | ${formatBytes(totalDelta)} (${formatPercent( From 47966b5a7f04720d15bd9892bb76e2d65bf34afc Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Wed, 24 Dec 2025 16:27:04 -0500 Subject: [PATCH 2/2] Update apps/site/scripts/compare-size/index.mjs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller --- apps/site/scripts/compare-size/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/scripts/compare-size/index.mjs b/apps/site/scripts/compare-size/index.mjs index 1ce5d445bb023..1b6675e1f7dbd 100644 --- a/apps/site/scripts/compare-size/index.mjs +++ b/apps/site/scripts/compare-size/index.mjs @@ -82,7 +82,7 @@ function reportDiff({ assets: oldAssets }, { assets: newAssets }) { const totalDelta = newTotal - oldTotal; // Summary table - let report = `## 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`; + let report = `## 📦 Build Size Comparison\n\n### Summary\n\n| Metric | Value |\n|--------|-------|\n`; report += `| Old Total Size | ${formatBytes(oldTotal)} |\n`; report += `| New Total Size | ${formatBytes(newTotal)} |\n`; report += `| Delta | ${formatBytes(totalDelta)} (${formatPercent(