remote-dsh 0.4.2 → 0.4.3
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/bin.js +2 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -572,5 +572,6 @@ function nextPipeLine() {
|
|
|
572
572
|
rl.on("close", () => resolve(pipeLines.shift() ?? ""));
|
|
573
573
|
});
|
|
574
574
|
}
|
|
575
|
-
|
|
575
|
+
// 管理命令(serve/join 常驻不 resolve)完成后显式退出:避免 TTY stdin / 句柄残留导致进程挂住
|
|
576
|
+
void main().then(() => process.exit(process.exitCode ?? 0));
|
|
576
577
|
//# sourceMappingURL=bin.js.map
|