Skip to content

Commit 7441082

Browse files
committed
fix: remove reinstalled option
1 parent e136ac9 commit 7441082

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

lib/controllers/run-controller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,6 @@ export class RunController extends EventEmitter implements IRunController {
335335
projectData,
336336
filesToRemove: <any>[],
337337
filesToSync: data.files,
338-
isReinstalled: false,
339338
hmrData: data.hmrData,
340339
useHotModuleReload: liveSyncInfo.useHotModuleReload,
341340
force: liveSyncInfo.force,

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)