Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dc6759f

Browse files
committedJun 26, 2019
fix: remove reinstalled option
1 parent e136ac9 commit dc6759f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎lib/definitions/livesync.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ declare global {
210210
interface ILiveSyncWatchInfo extends IProjectDataComposition, IHasUseHotModuleReloadOption, IConnectTimeoutOption {
211211
filesToRemove: string[];
212212
filesToSync: string[];
213-
isReinstalled: boolean;
214213
liveSyncDeviceData: ILiveSyncDeviceDescriptor;
215214
hmrData: IPlatformHmrData;
216215
force?: boolean;

‎lib/services/livesync/platform-livesync-service-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export abstract class PlatformLiveSyncServiceBase {
126126

127127
return {
128128
modifiedFilesData: modifiedLocalToDevicePaths,
129-
isFullSync: liveSyncInfo.isReinstalled,
129+
isFullSync: false,
130130
deviceAppData,
131131
useHotModuleReload: liveSyncInfo.useHotModuleReload
132132
};

0 commit comments

Comments
 (0)
Please sign in to comment.