File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ interface IProjectTemplatesService {
18
18
interface IPlatformProjectService {
19
19
createProject ( platform : string ) : IFuture < void > ;
20
20
buildProject ( platform : string ) : IFuture < void > ;
21
+ prepareProject ( normalizedPlatformName : string , platforms : string [ ] ) : IFuture < void > ;
21
22
}
22
23
23
24
interface IPlatformSpecificProjectService {
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ export class PlatformService implements IPlatformService {
113
113
this . validatePlatform ( platform ) ;
114
114
var normalizedPlatformName = this . normalizePlatformName ( platform ) ;
115
115
116
- // this.$projectService .prepareProject(normalizedPlatformName, this.platformNames ).wait();
116
+ this . $platformProjectService . prepareProject ( normalizedPlatformName , this . $platformsData . platformsNames ) . wait ( ) ;
117
117
} ) . future < void > ( ) ( ) ;
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments