swarm-code 0.1.13 → 0.1.14
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/ui/onboarding.js +1 -0
- package/package.json +1 -1
package/dist/ui/onboarding.js
CHANGED
|
@@ -295,6 +295,7 @@ async function readHiddenInput(prompt) {
|
|
|
295
295
|
const origRawMode = process.stdin.isRaw;
|
|
296
296
|
if (process.stdin.isTTY)
|
|
297
297
|
process.stdin.setRawMode(true);
|
|
298
|
+
process.stdin.resume();
|
|
298
299
|
process.stderr.write(prompt);
|
|
299
300
|
const cleanup = () => {
|
|
300
301
|
process.stdin.removeListener("data", onData);
|
package/package.json
CHANGED