@pythonidaer/complexity-report 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.5] - 2026-02-08
9
+
10
+ ### Fixed
11
+ - README Requirements: clarified that Node >=18 is for running the CLI; project being analyzed needs an ESLint flat config file. Clarified that the package bundles ESLint (users need not install it).
12
+
13
+ ## [1.0.4] - 2026-02-08
14
+
15
+ ### Fixed
16
+ - README: removed broken Documentation links (API.md, MIGRATION.md); point to existing docs and in-readme section.
17
+ - DEVELOPER.md: package name and install/import examples updated to @pythonidaer/complexity-report.
18
+
8
19
  ## [1.0.3] - 2026-02-08
9
20
 
10
21
  ### Fixed
package/README.md CHANGED
@@ -23,10 +23,10 @@ npm install -D @pythonidaer/complexity-report
23
23
 
24
24
  ## Requirements
25
25
 
26
- - **Node.js**: >=18
27
- - **ESLint**: >=9.0.0 with flat config (`eslint.config.js`)
26
+ - **Node.js**: >=18 (to run the CLI)
27
+ - **Project being analyzed** must have an ESLint flat config file at its root: `eslint.config.js`, `eslint.config.mjs`, or `eslint.config.cjs`
28
28
 
29
- Your project must have an ESLint flat config file. The tool will use your project's ESLint configuration to analyze complexity.
29
+ The package bundles ESLint and uses your project's config to run complexity analysis. You do not need to install ESLint or TypeScript in your project for the tool to work.
30
30
 
31
31
  ## Quick Start
32
32
 
@@ -93,10 +93,9 @@ console.log(`Total functions: ${result.stats.allFunctionsCount}`);
93
93
 
94
94
  ## Documentation
95
95
 
96
- - [Full API Documentation](./docs/API.md)
97
- - [Developer Guide](./docs/DEVELOPER.md)
98
- - [Migration Guide](./docs/MIGRATION.md)
99
- - [Changelog](./CHANGELOG.md)
96
+ - [Programmatic API](#programmatic-api) — usage and options (above)
97
+ - [Developer Guide](./docs/DEVELOPER.md) — internals and contributing
98
+ - [Changelog](./CHANGELOG.md) — version history and migration from scripts
100
99
  - [Publishing to npm](./PUBLISH.md) — for maintainers
101
100
 
102
101
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pythonidaer/complexity-report",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "AST-based cyclomatic complexity analyzer with interactive HTML reports and detailed function breakdowns",
5
5
  "type": "module",
6
6
  "main": "index.js",