@tiflis-io/tiflis-code-workstation 0.3.24 → 0.3.25

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/main.js +1 -1
  2. package/package.json +3 -2
package/dist/main.js CHANGED
@@ -3044,7 +3044,7 @@ var HeadlessAgentExecutor = class extends EventEmitter {
3044
3044
  const { command, args } = this.buildCommand(prompt);
3045
3045
  const aliasEnvVars = this.getAliasEnvVars();
3046
3046
  const shellEnv = getShellEnv();
3047
- this.subprocess = spawn2(command, args, {
3047
+ this.subprocess = spawn2("setsid", [command, ...args], {
3048
3048
  cwd: this.workingDir,
3049
3049
  env: {
3050
3050
  ...shellEnv,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiflis-io/tiflis-code-workstation",
3
- "version": "0.3.24",
3
+ "version": "0.3.25",
4
4
  "description": "Workstation server for tiflis-code - manages agent sessions and terminal access",
5
5
  "author": "Roman Barinov <rbarinov@gmail.com>",
6
6
  "license": "FSL-1.1-NC",
@@ -67,7 +67,8 @@
67
67
  "node": ">=24.0.0"
68
68
  },
69
69
  "scripts": {
70
- "dev": "tsx watch src/main.ts",
70
+ "dev": "pnpm build && node --watch dist/main.js",
71
+ "dev:tsx": "tsx watch src/main.ts",
71
72
  "build": "tsup",
72
73
  "start": "node dist/main.js",
73
74
  "test": "vitest run",