Skip to content

Commit 59623e5

Browse files
avivkellerCopilot
andauthored
fix(ci): use ## instead of # when comparing (#8448)
* fix(ci): use `##` instead of `#` when comparing Signed-off-by: Aviv Keller <me@aviv.sh> * Update apps/site/scripts/compare-size/index.mjs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller <me@aviv.sh> --------- Signed-off-by: Aviv Keller <me@aviv.sh> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent ffdf614 commit 59623e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/scripts/compare-size/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function reportDiff({ assets: oldAssets }, { assets: newAssets }) {
8282
const totalDelta = newTotal - oldTotal;
8383

8484
// Summary table
85-
let report = `# 📦 Build Size Comparison\n\n## Summary\n\n| Metric | Value |\n|--------|-------|\n`;
85+
let report = `## 📦 Build Size Comparison\n\n### Summary\n\n| Metric | Value |\n|--------|-------|\n`;
8686
report += `| Old Total Size | ${formatBytes(oldTotal)} |\n`;
8787
report += `| New Total Size | ${formatBytes(newTotal)} |\n`;
8888
report += `| Delta | ${formatBytes(totalDelta)} (${formatPercent(

0 commit comments

Comments
 (0)