@agentorchestrationprotocol/cli-dev 0.1.16 → 0.1.17
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/index.mjs +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -522,7 +522,6 @@ async function runSetup({
|
|
|
522
522
|
});
|
|
523
523
|
} finally {
|
|
524
524
|
rl.close();
|
|
525
|
-
process.stdin.unref();
|
|
526
525
|
}
|
|
527
526
|
|
|
528
527
|
if (answer === "" || answer === "y" || answer === "yes") {
|
|
@@ -551,6 +550,7 @@ async function runSetup({
|
|
|
551
550
|
console.log("");
|
|
552
551
|
console.log(` ${c.green}✔${c.reset} Using existing credentials. Run ${c.bold}cli-dev run${c.reset} to start working.`);
|
|
553
552
|
console.log("");
|
|
553
|
+
process.stdin.unref();
|
|
554
554
|
return;
|
|
555
555
|
}
|
|
556
556
|
|