@lifeaitools/clauth 1.5.48 → 1.5.49
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/cli/commands/serve.js +2 -2
- package/package.json +1 -1
package/cli/commands/serve.js
CHANGED
|
@@ -5269,8 +5269,8 @@ async function startChitchatSession(name) {
|
|
|
5269
5269
|
const binary = findClaudeBinary();
|
|
5270
5270
|
if (binary) {
|
|
5271
5271
|
try {
|
|
5272
|
-
const
|
|
5273
|
-
|
|
5272
|
+
const child = spawnProc('wt.exe', ['new-tab', '--title', 'rdc:collab', 'cmd', '/k', `cd /d ${CHITCHAT_CWD} && ${binary} /rdc:collab --session ${session_id}`], { detached: true, stdio: 'ignore', shell: false });
|
|
5273
|
+
child.unref();
|
|
5274
5274
|
console.log(`[ClaudeAItoCLI] spawned terminal for session ${session_id}`);
|
|
5275
5275
|
} catch (err) {
|
|
5276
5276
|
console.warn(`[ClaudeAItoCLI] could not spawn terminal: ${err.message}`);
|