@vellumai/cli 0.3.23 → 0.3.24

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 +1 -1
  2. package/src/lib/local.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/cli",
3
- "version": "0.3.23",
3
+ "version": "0.3.24",
4
4
  "description": "CLI tools for vellum-assistant",
5
5
  "type": "module",
6
6
  "exports": {
package/src/lib/local.ts CHANGED
@@ -377,6 +377,7 @@ export async function startLocalDaemon(): Promise<void> {
377
377
  }
378
378
 
379
379
  const child = spawn(daemonBinary, [], {
380
+ cwd: dirname(daemonBinary),
380
381
  detached: true,
381
382
  stdio: "ignore",
382
383
  env: daemonEnv,