chore(dev): tweak backend-memory-report

This commit is contained in:
syuilo 2026-06-24 17:41:51 +09:00
commit 5ab352da11

View file

@ -443,12 +443,10 @@ function renderJsFootprintSection(base, head) {
'',
renderJsFootprintMetricTable(base, head),
'',
'#### Load Phase Breakdown',
'',
renderJsFootprintPhaseTable(base, head),
'',
'</details>',
'',
//'#### Load Phase Breakdown',
//'',
//renderJsFootprintPhaseTable(base, head),
//'',
];
for (const block of [
@ -461,6 +459,9 @@ function renderJsFootprintSection(base, head) {
lines.push('');
}
lines.push('</details>');
lines.push('');
return lines.join('\n');
}