shiva-code 0.8.6 → 0.8.7
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 +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17297,6 +17297,10 @@ async function showDashboard() {
|
|
|
17297
17297
|
sessionId: project.latestSession.sessionId,
|
|
17298
17298
|
newSession: false
|
|
17299
17299
|
}], detectTerminal());
|
|
17300
|
+
if (isInsideTmux()) {
|
|
17301
|
+
await waitForKeypress();
|
|
17302
|
+
await showDashboard();
|
|
17303
|
+
}
|
|
17300
17304
|
}
|
|
17301
17305
|
break;
|
|
17302
17306
|
}
|
|
@@ -17308,6 +17312,10 @@ async function showDashboard() {
|
|
|
17308
17312
|
const launches = await getPackageLaunchConfig2(packageName);
|
|
17309
17313
|
if (launches.length > 0) {
|
|
17310
17314
|
await spawnProjects(launches, detectTerminal());
|
|
17315
|
+
if (isInsideTmux()) {
|
|
17316
|
+
await waitForKeypress();
|
|
17317
|
+
await showDashboard();
|
|
17318
|
+
}
|
|
17311
17319
|
}
|
|
17312
17320
|
break;
|
|
17313
17321
|
}
|