@nathapp/nax 0.65.3 → 0.65.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.
Files changed (2) hide show
  1. package/dist/nax.js +784 -315
  2. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nathapp/nax",
3
- "version": "0.65.3",
3
+ "version": "0.65.5",
4
4
  "description": "AI Coding Agent Orchestrator — loops until done",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,10 +11,13 @@
11
11
  "dev": "bun run bin/nax.ts",
12
12
  "build": "bun build bin/nax.ts --outdir dist --target bun --define \"GIT_COMMIT=\\\"$(git rev-parse --short HEAD)\\\"\"",
13
13
  "typecheck": "bun x tsc --noEmit",
14
- "lint": "bun x biome check src/ bin/ && bun run check:no-real-global-nax",
14
+ "lint": "bun x biome check src/ bin/ && bun run check:no-real-global-nax && bun run check:alias-internals && bun run check:deep-relatives",
15
15
  "lint:json": "bun x biome check src/ bin/ --reporter json",
16
16
  "lint:fix": "bun x biome check --write src/ bin/",
17
17
  "check:no-real-global-nax": "bun run scripts/check-no-real-global-nax.ts",
18
+ "check:alias-internals": "bun run scripts/check-alias-internals.ts",
19
+ "check:deep-relatives": "bun run scripts/check-deep-relatives.ts",
20
+ "check:deep-relatives:update": "bun run scripts/check-deep-relatives.ts --update-baseline",
18
21
  "release": "bun scripts/release.ts",
19
22
  "test": "bun run scripts/run-tests.ts",
20
23
  "test:bail": "bun run scripts/run-tests.ts --bail",