Skip to content

Commit 349c445

Browse files
author
DimitarTachev
committed
fix: fix tslint errors
1 parent 03b9467 commit 349c445

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/services/livesync/livesync-service.ts

+2
Original file line numberDiff line numberDiff 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 => {

lib/services/livesync/playground/preview-app-livesync-service.ts

+1-1
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)