File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
44
44
45
45
public async liveSync ( deviceDescriptors : ILiveSyncDeviceInfo [ ] , liveSyncData : ILiveSyncInfo ) : Promise < void > {
46
46
const projectData = this . $projectDataService . getProjectData ( liveSyncData . projectDir ) ;
47
+ await this . $pluginsService . ensureAllDependenciesAreInstalled ( projectData ) ;
47
48
await this . liveSyncOperation ( deviceDescriptors , liveSyncData , projectData ) ;
48
49
}
49
50
@@ -337,7 +338,6 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
337
338
projectDir : projectData . projectDir
338
339
} ) ;
339
340
} else {
340
- await this . $pluginsService . ensureAllDependenciesAreInstalled ( projectData ) ;
341
341
// In case liveSync is called for a second time for the same projectDir.
342
342
const isAlreadyLiveSyncing = this . liveSyncProcessesInfo [ projectData . projectDir ] && ! this . liveSyncProcessesInfo [ projectData . projectDir ] . isStopped ;
343
343
You can’t perform that action at this time.
0 commit comments