@nathapp/nax 0.37.0 → 0.38.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/dist/nax.js +6 -3
- package/package.json +4 -1
package/dist/nax.js
CHANGED
|
@@ -20675,7 +20675,7 @@ var package_default;
|
|
|
20675
20675
|
var init_package = __esm(() => {
|
|
20676
20676
|
package_default = {
|
|
20677
20677
|
name: "@nathapp/nax",
|
|
20678
|
-
version: "0.
|
|
20678
|
+
version: "0.38.0",
|
|
20679
20679
|
description: "AI Coding Agent Orchestrator \u2014 loops until done",
|
|
20680
20680
|
type: "module",
|
|
20681
20681
|
bin: {
|
|
@@ -20692,6 +20692,9 @@ var init_package = __esm(() => {
|
|
|
20692
20692
|
"test:unit": "bun test ./test/unit/ --timeout=60000",
|
|
20693
20693
|
"test:integration": "bun test ./test/integration/ --timeout=60000",
|
|
20694
20694
|
"test:ui": "bun test ./test/ui/ --timeout=60000",
|
|
20695
|
+
"check-test-overlap": "bun run scripts/check-test-overlap.ts",
|
|
20696
|
+
"check-dead-tests": "bun run scripts/check-dead-tests.ts",
|
|
20697
|
+
"check:test-sizes": "bun run scripts/check-test-sizes.ts",
|
|
20695
20698
|
prepublishOnly: "bun run build"
|
|
20696
20699
|
},
|
|
20697
20700
|
dependencies: {
|
|
@@ -20736,8 +20739,8 @@ var init_version = __esm(() => {
|
|
|
20736
20739
|
NAX_VERSION = package_default.version;
|
|
20737
20740
|
NAX_COMMIT = (() => {
|
|
20738
20741
|
try {
|
|
20739
|
-
if (/^[0-9a-f]{6,10}$/.test("
|
|
20740
|
-
return "
|
|
20742
|
+
if (/^[0-9a-f]{6,10}$/.test("cdad904"))
|
|
20743
|
+
return "cdad904";
|
|
20741
20744
|
} catch {}
|
|
20742
20745
|
try {
|
|
20743
20746
|
const result = Bun.spawnSync(["git", "rev-parse", "--short", "HEAD"], {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nathapp/nax",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.0",
|
|
4
4
|
"description": "AI Coding Agent Orchestrator \u2014 loops until done",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"test:unit": "bun test ./test/unit/ --timeout=60000",
|
|
18
18
|
"test:integration": "bun test ./test/integration/ --timeout=60000",
|
|
19
19
|
"test:ui": "bun test ./test/ui/ --timeout=60000",
|
|
20
|
+
"check-test-overlap": "bun run scripts/check-test-overlap.ts",
|
|
21
|
+
"check-dead-tests": "bun run scripts/check-dead-tests.ts",
|
|
22
|
+
"check:test-sizes": "bun run scripts/check-test-sizes.ts",
|
|
20
23
|
"prepublishOnly": "bun run build"
|
|
21
24
|
},
|
|
22
25
|
"dependencies": {
|