File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ export function getAppPath(platform, runType) {
273
273
//platforms/android/app/build/outputs/apk
274
274
let apks = glob . sync ( "platforms/android/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
275
275
if ( ! apks || apks . length === 0 ) {
276
- let apks = glob . sync ( "platforms/android/app/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
276
+ apks = glob . sync ( "platforms/android/app/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
277
277
}
278
278
return apks [ 0 ] ;
279
279
} else if ( platform . includes ( "ios" ) ) {
Original file line number Diff line number Diff line change 47
47
},
48
48
"scripts" : {
49
49
"postinstall" : " node ./postinstall.js" ,
50
- "compile" : " tsc --watch"
50
+ "prepare" : " tsc" ,
51
+ "watch" : " tsc --watch"
51
52
}
52
53
}
You can’t perform that action at this time.
0 commit comments