File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ interface IProjectTemplatesService {
1818interface IPlatformProjectService {
1919 createProject ( platform : string ) : IFuture < void > ;
2020 buildProject ( platform : string ) : IFuture < void > ;
21+ prepareProject ( normalizedPlatformName : string , platforms : string [ ] ) : IFuture < void > ;
2122}
2223
2324interface IPlatformSpecificProjectService {
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ export class PlatformService implements IPlatformService {
113113 this . validatePlatform ( platform ) ;
114114 var normalizedPlatformName = this . normalizePlatformName ( platform ) ;
115115
116- // this.$projectService .prepareProject(normalizedPlatformName, this.platformNames ).wait();
116+ this . $platformProjectService . prepareProject ( normalizedPlatformName , this . $platformsData . platformsNames ) . wait ( ) ;
117117 } ) . future < void > ( ) ( ) ;
118118 }
119119
You can’t perform that action at this time.
0 commit comments