Contents
PR Summary
What problems was I solving
The findGrowingObjects utility in heap-analysis-tools was not used anywhere in the monorepo or by external consumers. Keeping dead code increases maintenance burden and makes the library's public API surface misleading.
What user-facing changes did I ship
None. This is an internal tooling cleanup with no impact on shipped product behavior or consumer-facing APIs.
How I implemented it
Removed the findGrowingObjects implementation from top-objects.ts and dropped its re-export in index.ts. The remaining top-objects utilities (findTopObjects, formatTopObjects, formatTopObjectsForLLM) and their type exports were left untouched.
Description for the changelog
Removed the unused findGrowingObjects utility from @architect/heap-analysis-tools. All other heap snapshot analysis functions remain available and unchanged.
Remove dead `findGrowingObjects` utility from heap-analysis-tools
low2 filesRemoves the unused `findGrowingObjects` function and its re-export from the heap-analysis-tools library.