File tree 3 files changed +27
-28
lines changed
3 files changed +27
-28
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import gitCommit from '../git/commands/gitCommit';
15
15
import gitPush from '../git/commands/gitPush' ;
16
16
import gitFetch from '../git/commands/gitFetch' ;
17
17
import prompt from '../lib/prompt' ;
18
- import hijackProcessInput from '../lib/hijackProcessInput' ;
18
+ // import hijackProcessInput from '../lib/hijackProcessInput';
19
19
20
20
const prepare = async ( ) => {
21
21
@@ -90,12 +90,12 @@ export default async() => {
90
90
91
91
try {
92
92
// https://github.com/SamVerschueren/listr/issues/38
93
- hijackProcessInput . pause ( ) ;
93
+ // hijackProcessInput.pause();
94
94
await listr . run ( ) ;
95
95
} catch ( ex ) {
96
96
console . error ( ex ) ;
97
97
} finally {
98
- hijackProcessInput . resume ( ) ;
98
+ // hijackProcessInput.resume();
99
99
process . exit ( 0 ) ;
100
100
}
101
101
Original file line number Diff line number Diff line change 3
3
* @author vivaxy
4
4
*/
5
5
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
+ // };
Original file line number Diff line number Diff line change 35
35
"conventional-commit-types" : " ^2.1.0" ,
36
36
"execa" : " ^0.5.0" ,
37
37
"inquirer" : " ^1.2.3" ,
38
- "keypress" : " ^0.2.1" ,
39
38
"listr" : " ^0.8.0" ,
40
39
"minimatch" : " ^3.0.3" ,
41
40
"right-pad" : " ^1.0.1" ,
You can’t perform that action at this time.
0 commit comments