File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 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
727727 this . $processService . attachToProcessExitSignals ( this , ( ) => {
728728 if ( liveSyncData . syncToPreviewApp ) {
729729 // Do not await here, we are in process exit's handler.
730+ /* tslint:disable:no-floating-promises */
730731 this . $previewAppLiveSyncService . stopLiveSync ( ) ;
732+ /* tslint:enable:no-floating-promises */
731733 }
732734
733735 _ . keys ( this . liveSyncProcessesInfo ) . forEach ( projectDir => {
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export class PreviewAppLiveSyncService implements IPreviewAppLiveSyncService {
123123 await this . $platformService . preparePlatform ( prepareInfo ) ;
124124 }
125125
126- private async showWarningsForNativeFiles ( files : string [ ] ) : Promise < void > {
126+ private showWarningsForNativeFiles ( files : string [ ] ) : void {
127127 if ( files && files . length ) {
128128 for ( const file of files ) {
129129 if ( file . indexOf ( APP_RESOURCES_FOLDER_NAME ) > - 1 ) {
You can’t perform that action at this time.
0 commit comments