Skip to content

Commit 5dd304c

Browse files
committed
revert: 🐛revert fix when user presses key, console output gets wired, preserve user input
1 parent 6f50cfc commit 5dd304c

File tree

3 files changed

+27
-28
lines changed

3 files changed

+27
-28
lines changed

commands/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import gitCommit from '../git/commands/gitCommit';
1515
import gitPush from '../git/commands/gitPush';
1616
import gitFetch from '../git/commands/gitFetch';
1717
import prompt from '../lib/prompt';
18-
import hijackProcessInput from '../lib/hijackProcessInput';
18+
// import hijackProcessInput from '../lib/hijackProcessInput';
1919

2020
const prepare = async() => {
2121

@@ -90,12 +90,12 @@ export default async() => {
9090

9191
try {
9292
// https://github.com/SamVerschueren/listr/issues/38
93-
hijackProcessInput.pause();
93+
// hijackProcessInput.pause();
9494
await listr.run();
9595
} catch (ex) {
9696
console.error(ex);
9797
} finally {
98-
hijackProcessInput.resume();
98+
// hijackProcessInput.resume();
9999
process.exit(0);
100100
}
101101

lib/hijackProcessInput.js

+24-24
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
* @author vivaxy
44
*/
55

6-
import keypress from 'keypress';
7-
8-
const stdin = process.stdin;
9-
10-
const hijackCtrlC = (ch, key) => {
11-
if (key && key.ctrl && key.name === 'c') {
12-
process.exit(0);
13-
}
14-
};
15-
16-
export default {
17-
pause: () => {
18-
keypress(stdin);
19-
stdin.setRawMode(true);
20-
stdin.resume();
21-
stdin.setEncoding('utf8');
22-
stdin.on('keypress', hijackCtrlC);
23-
},
24-
resume: () => {
25-
stdin.setRawMode(false);
26-
stdin.resume();
27-
stdin.removeListener('keypress', hijackCtrlC);
28-
},
29-
};
6+
// import keypress from 'keypress';
7+
//
8+
// const stdin = process.stdin;
9+
//
10+
// const hijackCtrlC = (ch, key) => {
11+
// if (key && key.ctrl && key.name === 'c') {
12+
// process.exit(0);
13+
// }
14+
// };
15+
//
16+
// export default {
17+
// pause: () => {
18+
// keypress(stdin);
19+
// stdin.setRawMode(true);
20+
// stdin.resume();
21+
// stdin.setEncoding('utf8');
22+
// stdin.on('keypress', hijackCtrlC);
23+
// },
24+
// resume: () => {
25+
// stdin.setRawMode(false);
26+
// stdin.resume();
27+
// stdin.removeListener('keypress', hijackCtrlC);
28+
// },
29+
// };

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"conventional-commit-types": "^2.1.0",
3636
"execa": "^0.5.0",
3737
"inquirer": "^1.2.3",
38-
"keypress": "^0.2.1",
3938
"listr": "^0.8.0",
4039
"minimatch": "^3.0.3",
4140
"right-pad": "^1.0.1",

0 commit comments

Comments
 (0)