File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ language: node_js
2
2
sudo : false
3
3
4
4
node_js :
5
- - ' 6.9 '
5
+ - ' 8.11 '
6
6
7
7
env :
8
8
matrix :
@@ -28,4 +28,4 @@ deploy:
28
28
file : dist/ngls.vsix
29
29
on :
30
30
repo : angular/vscode-ng-language-service
31
- tags : true
31
+ tags : true
Original file line number Diff line number Diff line change @@ -41,19 +41,19 @@ try {
41
41
content = content . replace ( RE_PWD , args [ 'pwd' ] ) ;
42
42
}
43
43
const json = JSON . parse ( content ) ;
44
-
44
+
45
45
if ( Array . isArray ( json ) ) {
46
46
for ( const message of json ) {
47
47
writer . write ( message as any ) ;
48
48
}
49
49
}
50
50
51
- // Do not terminate the process for 5 seconds to allow messages to
51
+ // Do not terminate the process for 10 seconds to allow messages to
52
52
// propagate. vscode-jsonrpc detects the process exit and terminates
53
53
// the service. This prevents the detection from causing the test
54
54
// to fail.
55
- setTimeout ( ( ) => { } , 5000 ) ;
55
+ setTimeout ( ( ) => { } , 10000 ) ;
56
56
} catch ( e ) {
57
57
console . error ( `Error: ${ e . message } ` ) ;
58
58
process . exit ( 2 ) ;
59
- }
59
+ }
You can’t perform that action at this time.
0 commit comments