We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa938a commit 8cef8daCopy full SHA for 8cef8da
lib/services/livesync/livesync-service.ts
@@ -83,6 +83,10 @@ export class LiveSyncService extends EventEmitter implements ILiveSyncService {
83
await liveSyncProcessInfo.actionsChain;
84
}
85
86
+ _.each(liveSyncProcessInfo.deviceDescriptors, descriptor => {
87
+ this.emit(LiveSyncEvents.liveSyncStopped, { projectDir, deviceIdentifier: descriptor.identifier });
88
+ });
89
+
90
liveSyncProcessInfo.isStopped = true;
91
liveSyncProcessInfo.deviceDescriptors = [];
92
@@ -93,8 +97,6 @@ export class LiveSyncService extends EventEmitter implements ILiveSyncService {
93
97
projectData
94
98
95
99
});
96
-
- this.emit(LiveSyncEvents.liveSyncStopped, { projectDir });
100
101
102
0 commit comments