@nathapp/nax 0.77.3 → 0.78.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nathapp/nax",
3
- "version": "0.77.3",
3
+ "version": "0.78.0",
4
4
  "description": "AI Coding Agent Orchestrator — loops until done",
5
5
  "type": "module",
6
6
  "bin": {
@@ -39,13 +39,17 @@
39
39
  "test:e2e": "timeout -k 5s 180s bun test test/e2e/ --timeout=60000",
40
40
  "test:coverage": "bun run scripts/check-coverage.ts",
41
41
  "test:coverage:report": "bun run scripts/check-coverage.ts --report",
42
- "check-test-overlap": "bun run scripts/check-test-overlap.ts",
43
- "check-dead-tests": "bun run scripts/check-dead-tests.ts",
44
- "check:test-sizes": "bun run scripts/check-test-sizes.ts",
42
+ "report:test-overlap": "bun run scripts/report-test-overlap.ts",
43
+ "report:dead-tests": "bun run scripts/report-dead-tests.ts",
45
44
  "check:test-mocks": "bun scripts/check-inline-test-mocks.ts --strict",
46
45
  "check:process-cwd": "bash scripts/check-process-cwd.sh",
47
46
  "check:no-adapter-wrap": "bash scripts/check-no-adapter-wrap.sh",
48
47
  "check:dispatch-context": "bash scripts/check-dispatch-context.sh",
48
+ "check:naxconfig-cast": "bash scripts/check-no-silent-naxconfig-cast.sh",
49
+ "check:runtime-cleanup": "bash scripts/check-runtime-cleanup.sh",
50
+ "check:adapter-no-config-import": "bash scripts/check-adapter-no-config-import.sh",
51
+ "check:gate-reachability": "bun run scripts/check-gate-reachability.ts",
52
+ "check:all": "bun run lint && bun run check:test-mocks && bun run check:process-cwd && bun run check:no-adapter-wrap && bun run check:dispatch-context && bun run check:naxconfig-cast && bun run check:runtime-cleanup && bun run check:adapter-no-config-import && bun run check:gate-reachability",
49
53
  "prepublishOnly": "bun run build",
50
54
  "test:full": "FULL=1 NAX_PRECHECK=1 bun test test/ --timeout=60000"
51
55
  },