File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 55
55
async function main ( ) {
56
56
try {
57
57
await cli . parse ( )
58
- } catch ( err ) {
58
+ } catch ( /** @type { any } */ err ) {
59
59
if ( cli . parsed && cli . parsed . argv . debug ) {
60
60
console . error ( '\n' , err )
61
61
} else {
Original file line number Diff line number Diff line change 121
121
"strip-json-comments" : " ^3.1.1" ,
122
122
"tempy" : " ^1.0.1" ,
123
123
"typedoc" : " ^0.21.2" ,
124
- "typescript" : " 4.3 .x" ,
124
+ "typescript" : " 4.4 .x" ,
125
125
"update-notifier" : " ^5.0.0" ,
126
126
"yargs" : " ^17.1.1"
127
127
},
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ async function checkAndroidEnv () {
95
95
await execa ( 'emulator' , [ '-help' ] )
96
96
// await execa('sdkmanager')
97
97
await execa ( 'avdmanager' , [ 'list' ] )
98
- } catch ( err ) {
98
+ } catch ( /** @type { any } */ err ) {
99
99
throw new Error ( `"Command ${ err . path } " is not available, you need to properly setup your android environment.` )
100
100
}
101
101
}
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const projectShouldFailLint = async (project) => {
58
58
tsRepo : false ,
59
59
...userConfig . lint
60
60
} )
61
- } catch ( error ) {
61
+ } catch ( /** @type { any } */ error ) {
62
62
failed = true
63
63
expect ( error . message ) . to . contain ( 'Lint errors' )
64
64
}
You can’t perform that action at this time.
0 commit comments