ework-aio 0.5.37 → 0.5.38

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/package.json +2 -2
  2. package/src/config.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-aio",
3
- "version": "0.5.37",
3
+ "version": "0.5.38",
4
4
  "description": "All-in-one installer for ework (issue tracker) + ework-daemon (AI bridge) + opencode-ework (plugin). One command: npm i -g ework-aio && ework-aio install.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "ework-daemon": "^0.4.1",
50
- "ework-router": "^0.1.5",
50
+ "ework-router": "^0.1.7",
51
51
  "ework-web": "^0.10.15",
52
52
  "opencode-ework": "^0.1.0",
53
53
  "zod": "^3.23.0"
package/src/config.ts CHANGED
@@ -104,9 +104,9 @@ export const ROUTER_ENV_KEYS: readonly EnvKeySpec[] = [
104
104
  { envVar: "ROUTER_FALLBACK_ENDPOINT", file: "router", generate: (c) => `http://127.0.0.1:${c.daemonPort}` },
105
105
  { envVar: "ROUTER_CONFIG_FILE", file: "router", generate: (c) => `${c.paths.routerDataDir}/strategy.json` },
106
106
  { envVar: "WORK_DB_DRIVER", file: "router", generate: () => "sqlite" },
107
- { envVar: "WORK_DB_PATH", file: "router", generate: (c) => c.paths.webDbPath },
107
+ { envVar: "WORK_DB_PATH", file: "router", generate: (c) => c.paths.daemonDbPath },
108
108
  { envVar: "WORK_DB_PREFIX", file: "router", generate: () => "" },
109
- { envVar: "DAEMON_TABLE_PREFIX", file: "router", generate: () => "d_" },
109
+ { envVar: "DAEMON_TABLE_PREFIX", file: "router", generate: () => "" },
110
110
  ] as const;
111
111
 
112
112
  export function keysForFile(file: EnvFile): readonly EnvKeySpec[] {