File tree Expand file tree Collapse file tree 4 files changed +210
-323
lines changed Expand file tree Collapse file tree 4 files changed +210
-323
lines changed Original file line number Diff line number Diff line change 28
28
"debug" : " ^4.3.4" ,
29
29
"execa" : " ^5.1.1" ,
30
30
"pony-cause" : " ^2.1.9" ,
31
- "semver" : " ^7.5.0 " ,
31
+ "semver" : " ^7.5.4 " ,
32
32
"which" : " ^3.0.0" ,
33
33
"yaml" : " ^2.2.2" ,
34
34
"yargs" : " ^17.7.1"
47
47
"@types/rimraf" : " ^4.0.5" ,
48
48
"@types/which" : " ^3.0.0" ,
49
49
"@types/yargs" : " ^17.0.10" ,
50
- "@typescript-eslint/eslint-plugin" : " ^5.42.1 " ,
51
- "@typescript-eslint/parser" : " ^5.42.1 " ,
50
+ "@typescript-eslint/eslint-plugin" : " ^5.62.0 " ,
51
+ "@typescript-eslint/parser" : " ^5.62.0 " ,
52
52
"deepmerge" : " ^4.2.2" ,
53
53
"eslint" : " ^8.27.0" ,
54
54
"eslint-config-prettier" : " ^8.5.0" ,
67
67
"stdio-mock" : " ^1.2.0" ,
68
68
"ts-jest" : " ^29.1.0" ,
69
69
"ts-node" : " ^10.7.0" ,
70
- "typescript" : " ~4.8.4 "
70
+ "typescript" : " ~5.1.6 "
71
71
},
72
72
"packageManager" : " yarn@3.2.1" ,
73
73
"engines" : {
Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ type Env = {
9
9
* this tool needs to access, whether their values are defined or not.
10
10
*/
11
11
export function getEnvironmentVariables ( ) : Env {
12
- return [ 'EDITOR' ] . reduce ( ( object , key ) => {
13
- return { ...object , [ key ] : process . env [ key ] } ;
14
- } , { } as Env ) ;
12
+ return [ 'EDITOR' ] . reduce (
13
+ ( object , key ) => {
14
+ return { ...object , [ key ] : process . env [ key ] } ;
15
+ } ,
16
+ {
17
+ EDITOR : undefined ,
18
+ } ,
19
+ ) ;
15
20
}
Original file line number Diff line number Diff line change 12
12
"strict" : true ,
13
13
"target" : " es2017"
14
14
},
15
- "exclude" : [" ./dist/**/*" ]
15
+ "exclude" : [" ./dist/**/*" , " node_modules " ]
16
16
}
You can’t perform that action at this time.
0 commit comments