shiva-code 0.8.8 → 0.8.10
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/index.js +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4209,7 +4209,8 @@ async function spawnInTmux(projects, sessionName) {
|
|
|
4209
4209
|
project.projectPath,
|
|
4210
4210
|
"claude",
|
|
4211
4211
|
...claudeArgs
|
|
4212
|
-
], { stdio: "
|
|
4212
|
+
], { stdio: "ignore" });
|
|
4213
|
+
spawnSync2("tmux", ["select-window", "-t", safeName], { stdio: "ignore" });
|
|
4213
4214
|
} else {
|
|
4214
4215
|
if (i === 0) {
|
|
4215
4216
|
spawnSync2("tmux", [
|
|
@@ -17298,7 +17299,8 @@ async function showDashboard() {
|
|
|
17298
17299
|
newSession: false
|
|
17299
17300
|
}], detectTerminal());
|
|
17300
17301
|
if (isInsideTmux()) {
|
|
17301
|
-
|
|
17302
|
+
await new Promise((resolve14) => setTimeout(resolve14, 100));
|
|
17303
|
+
return;
|
|
17302
17304
|
}
|
|
17303
17305
|
}
|
|
17304
17306
|
break;
|
|
@@ -17312,7 +17314,8 @@ async function showDashboard() {
|
|
|
17312
17314
|
if (launches.length > 0) {
|
|
17313
17315
|
await spawnProjects(launches, detectTerminal());
|
|
17314
17316
|
if (isInsideTmux()) {
|
|
17315
|
-
|
|
17317
|
+
await new Promise((resolve14) => setTimeout(resolve14, 100));
|
|
17318
|
+
return;
|
|
17316
17319
|
}
|
|
17317
17320
|
}
|
|
17318
17321
|
break;
|