feat(ipuaro): display transitive counts in High Impact Files table

- Change table header to include Direct and Transitive columns
- Sort by transitive count first, then by impact score
- Update tests for new table format
This commit is contained in:
imfozilbek
2025-12-05 16:16:22 +05:00
parent 17d75dbd54
commit 2e84472e49
3 changed files with 63 additions and 35 deletions

View File

@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.30.1] - 2025-12-05 - Display Transitive Counts in Context
### Changed
- **High Impact Files table now includes transitive counts**
- Table header changed from `| File | Impact | Dependents |` to `| File | Impact | Direct | Transitive |`
- Shows both direct dependent count and transitive dependent count
- Sorting changed: now sorts by transitive count first, then by impact score
- Example: `| utils/validation | 67% | 12 | 24 |`
### Technical Details
- Total tests: 1839 passed
- 0 ESLint errors, 3 warnings (pre-existing complexity)
---
## [0.30.0] - 2025-12-05 - Transitive Dependencies Count
### Added