File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -727,7 +727,9 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
727
727
this . $processService . attachToProcessExitSignals ( this , ( ) => {
728
728
if ( liveSyncData . syncToPreviewApp ) {
729
729
// Do not await here, we are in process exit's handler.
730
+ /* tslint:disable:no-floating-promises */
730
731
this . $previewAppLiveSyncService . stopLiveSync ( ) ;
732
+ /* tslint:enable:no-floating-promises */
731
733
}
732
734
733
735
_ . keys ( this . liveSyncProcessesInfo ) . forEach ( projectDir => {
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export class PreviewAppLiveSyncService implements IPreviewAppLiveSyncService {
123
123
await this . $platformService . preparePlatform ( prepareInfo ) ;
124
124
}
125
125
126
- private async showWarningsForNativeFiles ( files : string [ ] ) : Promise < void > {
126
+ private showWarningsForNativeFiles ( files : string [ ] ) : void {
127
127
if ( files && files . length ) {
128
128
for ( const file of files ) {
129
129
if ( file . indexOf ( APP_RESOURCES_FOLDER_NAME ) > - 1 ) {
You can’t perform that action at this time.
0 commit comments