Skip to content

Commit 75578ea

Browse files
author
Dimitar Kerezov
committed
Fix lint errors
1 parent e377340 commit 75578ea

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

lib/definitions/livesync.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,7 @@ interface ILiveSyncInfo {
116116
useLiveEdit?: boolean;
117117
}
118118

119-
interface ILatestAppPackageInstalledSettings {
120-
[key: string]: {
121-
[key: string]: boolean;
122-
}
123-
}
119+
interface ILatestAppPackageInstalledSettings extends IDictionary<IDictionary<boolean>> { /* empty */ }
124120

125121
interface ILiveSyncBuildInfo {
126122
platform: string;

lib/services/livesync/livesync-service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ export class LiveSyncService extends EventEmitter implements ILiveSyncService {
200200

201201
await this.$platformService.trackActionForPlatform({ action: LiveSyncTrackActionNames.DEVICE_INFO, platform, isForDevice: !device.isEmulator, deviceOsVersion: device.deviceInfo.version });
202202

203-
204203
const shouldInstall = await this.$platformService.shouldInstall(device, projectData, deviceBuildInfoDescriptor.outputPath);
205204
if (shouldInstall) {
206205
await this.$platformService.installApplication(device, { release: false }, projectData, pathToBuildItem, deviceBuildInfoDescriptor.outputPath);
@@ -263,7 +262,7 @@ export class LiveSyncService extends EventEmitter implements ILiveSyncService {
263262
[DeviceTypes.Device]: false,
264263
[DeviceTypes.Emulator]: false
265264
}
266-
}
265+
};
267266
}
268267

269268
private async startWatcher(projectData: IProjectData,

0 commit comments

Comments
 (0)