Files
Kazuki Yamada 77bc164cef chore(security): Add min-release-age to sub-package .npmrc files
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>
2026-03-21 18:45:30 +09:00
..

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 monitoring
  • npm 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.