This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree 5 files changed +1371
-1153
lines changed
plugins/workspace-plugin/src
5 files changed +1371
-1153
lines changed Original file line number Diff line number Diff line change 35
35
"rimraf" : " 2.6.2" ,
36
36
"ts-jest" : " 25.3.1" ,
37
37
"tslint" : " 5.11.0" ,
38
- "typescript" : " 3.5.3 " ,
38
+ "typescript" : " 3.9.2 " ,
39
39
"typescript-formatter" : " 7.2.2"
40
40
},
41
41
"files" : [
Original file line number Diff line number Diff line change 17
17
"eslint-plugin-no-null" : " 1.0.2" ,
18
18
"tslint" : " 6.1.1" ,
19
19
"eslint-plugin-sonarjs" : " 0.5.0" ,
20
- "typescript" : " ~3.5.3 " ,
20
+ "typescript" : " ~3.9.2 " ,
21
21
"typescript-formatter" : " 7.2.2"
22
22
},
23
23
"scripts" : {
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ function main(argv: string[]): void {
32
32
return fatal ( 'Skip fetch commands' ) ;
33
33
}
34
34
35
- const output = process . env [ 'CHE_THEIA_GIT_ASKPASS_PIPE' ] as string ;
36
- const socketPath = process . env [ 'CHE_THEIA_GIT_ASKPASS_HANDLE' ] as string ;
35
+ const output = process . env [ 'CHE_THEIA_GIT_ASKPASS_PIPE' ] ;
36
+ const socketPath = process . env [ 'CHE_THEIA_GIT_ASKPASS_HANDLE' ] ;
37
37
const request = argv [ 2 ] ;
38
38
const host = argv [ 4 ] . substring ( 1 , argv [ 4 ] . length - 2 ) ;
39
39
const opts : http . RequestOptions = {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function getIPCHandlePath(nonce: string): string {
28
28
}
29
29
30
30
if ( process . env [ 'XDG_RUNTIME_DIR' ] ) {
31
- return path . join ( process . env [ 'XDG_RUNTIME_DIR' ] as string , `che-theia-git-askpass-${ nonce } .sock` ) ;
31
+ return path . join ( process . env [ 'XDG_RUNTIME_DIR' ] , `che-theia-git-askpass-${ nonce } .sock` ) ;
32
32
}
33
33
34
34
return path . join ( os . tmpdir ( ) , `che-theia-git-askpass-${ nonce } .sock` ) ;
You can’t perform that action at this time.
0 commit comments