aptunnel 1.0.2 → 1.0.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/package.json +1 -1
- package/src/commands/init.js +3 -2
- package/src/commands/login.js +0 -1
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -273,8 +273,9 @@ function closeRL() {
|
|
|
273
273
|
_rl.close();
|
|
274
274
|
_rl = null;
|
|
275
275
|
}
|
|
276
|
-
//
|
|
277
|
-
|
|
276
|
+
// Do NOT call process.stdin.resume() here. Flowing mode with no listener
|
|
277
|
+
// discards keystrokes. Child processes (aptible) read from fd 0 directly
|
|
278
|
+
// at OS level regardless of Node.js stream state.
|
|
278
279
|
}
|
|
279
280
|
|
|
280
281
|
function ask(prompt) {
|