@aiready/context-analyzer 0.9.9 → 0.9.10

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @aiready/context-analyzer@0.9.9 build /Users/pengcao/projects/aiready/packages/context-analyzer
3
+ > @aiready/context-analyzer@0.9.10 build /Users/pengcao/projects/aiready/packages/context-analyzer
4
4
  > tsup src/index.ts src/cli.ts --format cjs,esm --dts
5
5
 
6
6
  CLI Building entry: src/cli.ts, src/index.ts
@@ -9,17 +9,17 @@
9
9
  CLI Target: es2020
10
10
  CJS Build start
11
11
  ESM Build start
12
+ CJS dist/index.js 51.03 KB
13
+ CJS dist/cli.js 62.78 KB
14
+ CJS ⚡️ Build success in 34ms
12
15
  ESM dist/cli.mjs 18.53 KB
13
16
  ESM dist/index.mjs 585.00 B
14
17
  ESM dist/chunk-BD4NWUVG.mjs 42.75 KB
15
- ESM dist/chunk-Y6FXYEAI.mjs 390.00 B
16
18
  ESM dist/python-context-UOPTQH44.mjs 5.64 KB
17
- ESM ⚡️ Build success in 290ms
18
- CJS dist/index.js 51.03 KB
19
- CJS dist/cli.js 62.78 KB
20
- CJS ⚡️ Build success in 290ms
19
+ ESM dist/chunk-Y6FXYEAI.mjs 390.00 B
20
+ ESM ⚡️ Build success in 38ms
21
21
  DTS Build start
22
- DTS ⚡️ Build success in 8307ms
22
+ DTS ⚡️ Build success in 1158ms
23
23
  DTS dist/cli.d.ts 20.00 B
24
24
  DTS dist/index.d.ts 6.03 KB
25
25
  DTS dist/cli.d.mts 20.00 B
@@ -1,32 +1,31 @@
1
1
 
2
2
  
3
- > @aiready/context-analyzer@0.9.9 test /Users/pengcao/projects/aiready/packages/context-analyzer
3
+ > @aiready/context-analyzer@0.9.10 test /Users/pengcao/projects/aiready/packages/context-analyzer
4
4
  > vitest run
5
5
 
6
6
  [?25l
7
7
   RUN  v4.0.18 /Users/pengcao/projects/aiready/packages/context-analyzer
8
8
 
9
- ✓ src/__tests__/scoring.test.ts (7 tests) 7ms
10
- ✓ dist/__tests__/scoring.test.js (7 tests) 20ms
11
- ✓ src/__tests__/fragmentation-log.test.ts (3 tests) 288ms
12
- ✓ dist/__tests__/fragmentation-advanced.test.js (3 tests) 4ms
13
- ✓ src/__tests__/analyzer.test.ts (14 tests) 445ms
14
- ✓ should build a basic dependency graph  311ms
15
- ✓ dist/__tests__/enhanced-cohesion.test.js (6 tests) 15ms
16
- ✓ dist/__tests__/analyzer.test.js (14 tests) 381ms
17
- ✓ src/__tests__/fragmentation-coupling.test.ts (2 tests) 262ms
18
- ✓ dist/__tests__/fragmentation-coupling.test.js (2 tests) 14ms
19
- ✓ src/__tests__/auto-detection.test.ts (8 tests) 252ms
20
- ✓ dist/__tests__/auto-detection.test.js (8 tests) 245ms
9
+ ✓ src/__tests__/scoring.test.ts (7 tests) 9ms
10
+ ✓ dist/__tests__/scoring.test.js (7 tests) 3ms
11
+ ✓ dist/__tests__/enhanced-cohesion.test.js (6 tests) 2ms
12
+ ✓ dist/__tests__/fragmentation-coupling.test.js (2 tests) 27ms
13
+ ✓ src/__tests__/auto-detection.test.ts (8 tests) 18ms
14
+ ✓ src/__tests__/fragmentation-log.test.ts (3 tests) 11ms
15
+ ✓ src/__tests__/fragmentation-advanced.test.ts (3 tests) 12ms
16
+ ✓ src/__tests__/fragmentation-coupling.test.ts (2 tests) 38ms
17
+ ✓ dist/__tests__/auto-detection.test.js (8 tests) 44ms
18
+ ✓ src/__tests__/analyzer.test.ts (14 tests) 142ms
19
+ ✓ dist/__tests__/analyzer.test.js (14 tests) 108ms
20
+ ✓ dist/__tests__/fragmentation-log.test.js (3 tests) 2ms
21
+ ✓ dist/__tests__/fragmentation-advanced.test.js (3 tests) 3ms
22
+ ✓ src/__tests__/structural-cohesion.test.ts (4 tests) 2ms
21
23
  ✓ src/__tests__/enhanced-cohesion.test.ts (6 tests) 2ms
22
- ✓ dist/__tests__/fragmentation-log.test.js (3 tests) 4ms
23
24
  ✓ dist/__tests__/structural-cohesion.test.js (4 tests) 1ms
24
- ✓ src/__tests__/fragmentation-advanced.test.ts (3 tests) 14ms
25
- ✓ src/__tests__/structural-cohesion.test.ts (4 tests) 3ms
26
25
 
27
26
   Test Files  16 passed (16)
28
27
   Tests  94 passed (94)
29
-  Start at  23:14:59
30
-  Duration  9.68s (transform 17.58s, setup 0ms, import 58.06s, tests 1.96s, environment 18ms)
28
+  Start at  01:02:14
29
+  Duration  1.95s (transform 2.77s, setup 0ms, import 11.50s, tests 423ms, environment 22ms)
31
30
 
32
31
  [?25h
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/context-analyzer",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "description": "AI context window cost analysis - detect fragmented code, deep import chains, and expensive context budgets",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -49,7 +49,7 @@
49
49
  "commander": "^14.0.0",
50
50
  "chalk": "^5.3.0",
51
51
  "prompts": "^2.4.2",
52
- "@aiready/core": "0.9.9"
52
+ "@aiready/core": "0.9.10"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@types/node": "^24.0.0",