nextclaw 0.2.8 → 0.2.9

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/cli/index.js CHANGED
@@ -355,10 +355,7 @@ async function startGateway(options = {}) {
355
355
  host: uiConfig.host,
356
356
  port: uiConfig.port,
357
357
  configPath: getConfigPath(),
358
- staticDir: uiStaticDir ?? void 0,
359
- onReload: async () => {
360
- return;
361
- }
358
+ staticDir: uiStaticDir ?? void 0
362
359
  });
363
360
  const uiUrl = `http://${uiServer.host}:${uiServer.port}`;
364
361
  console.log(`\u2713 UI API: ${uiUrl}/api`);
@@ -487,10 +484,7 @@ async function startGateway(options = {}) {
487
484
  host: uiConfig.host,
488
485
  port: uiConfig.port,
489
486
  configPath: getConfigPath(),
490
- staticDir: uiStaticDir ?? void 0,
491
- onReload: async () => {
492
- await runConfigReload("ui");
493
- }
487
+ staticDir: uiStaticDir ?? void 0
494
488
  });
495
489
  const uiUrl = `http://${uiServer.host}:${uiServer.port}`;
496
490
  console.log(`\u2713 UI API: ${uiUrl}/api`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -34,14 +34,6 @@
34
34
  "bridge",
35
35
  "ui-dist"
36
36
  ],
37
- "scripts": {
38
- "dev": "pnpm -C ../nextclaw-core build && pnpm -C ../nextclaw-server build && tsx src/cli/index.ts",
39
- "build": "pnpm -C ../nextclaw-core build && pnpm -C ../nextclaw-server build && tsup src/index.ts src/cli/index.ts --format esm --dts --out-dir dist && node scripts/copy-ui-dist.mjs",
40
- "start": "node dist/cli.js",
41
- "lint": "eslint .",
42
- "tsc": "tsc -p tsconfig.json",
43
- "test": "vitest"
44
- },
45
37
  "dependencies": {
46
38
  "chokidar": "^3.6.0",
47
39
  "commander": "^12.1.0",
@@ -59,5 +51,13 @@
59
51
  "tsx": "^4.19.2",
60
52
  "typescript": "^5.6.3",
61
53
  "vitest": "^2.1.2"
54
+ },
55
+ "scripts": {
56
+ "dev": "pnpm -C ../nextclaw-core build && pnpm -C ../nextclaw-server build && tsx src/cli/index.ts",
57
+ "build": "pnpm -C ../nextclaw-core build && pnpm -C ../nextclaw-server build && tsup src/index.ts src/cli/index.ts --format esm --dts --out-dir dist && node scripts/copy-ui-dist.mjs",
58
+ "start": "node dist/cli.js",
59
+ "lint": "eslint .",
60
+ "tsc": "tsc -p tsconfig.json",
61
+ "test": "vitest"
62
62
  }
63
- }
63
+ }