mirror of
https://github.com/yamadashy/repomix.git
synced 2026-03-25 10:52:57 +01:00
npm only reads .npmrc from the directory containing package.json, not from parent directories. Sub-packages that run `npm ci` independently (e.g., in CI or Docker builds) were missing the min-release-age=7 protection that the root .npmrc provides. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Memory Benchmarks
Memory usage monitoring tools for repomix.
Setup
cd scripts/memory
npm install
Quick Start
# Quick memory leak check
npm run leak:quick
# Detailed analysis
npm run leak:analyze
Available Scripts
npm run leak:quick- Fast leak detection (20 iterations)npm run leak:watch- Continuous monitoringnpm run leak:analyze- Comprehensive analysis with reports
Understanding Results
- Heap Memory: JavaScript objects (should stabilize)
- RSS Memory: Total process memory (watch for growth > 100%)
Look for consistent upward trends that indicate memory leaks.