We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce1064e + e0ec72c commit 571ee48Copy full SHA for 571ee48
lib/tools/broccoli/node-modules-dest-copy.ts
@@ -26,7 +26,8 @@ export class DestCopy implements IBroccoliPlugin {
26
private platform: string,
27
private $fs: IFileSystem,
28
private $projectFilesManager: IProjectFilesManager,
29
- private $pluginsService: IPluginsService
+ private $pluginsService: IPluginsService,
30
+ private $platformsData: IPlatformsData
31
) {
32
this.dependencies = Object.create(null);
33
this.devDependencies = this.getDevDependencies(projectDir);
@@ -93,7 +94,7 @@ export class DestCopy implements IBroccoliPlugin {
93
94
});
95
96
if(!_.isEmpty(this.dependencies)) {
- this.$pluginsService.afterPrepareAllPlugins().wait();
97
+ this.$platformsData.getPlatformData(platform).platformProjectService.afterPrepareAllPlugins().wait();
98
}
99
100
0 commit comments