File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -68,3 +68,4 @@ export const ItunesConnectApplicationTypes = new ItunesConnectApplicationTypesCl
68
68
export const ANGULAR_NAME = "angular" ;
69
69
export const TYPESCRIPT_NAME = "typescript" ;
70
70
export const BUILD_OUTPUT_EVENT_NAME = "buildOutput" ;
71
+ export const VERSION_STRING = "version" ;
Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ export class PlatformService extends EventEmitter implements IPlatformService {
67
67
}
68
68
69
69
let platformData = this . $platformsData . getPlatformData ( platform , projectData ) ;
70
+ let currentPlatformData : any = this . $projectDataService . getNSValue ( projectData . projectDir , platformData . frameworkPackageName ) ;
71
+ if ( currentPlatformData && currentPlatformData [ constants . VERSION_STRING ] ) {
72
+ version = currentPlatformData [ constants . VERSION_STRING ] ;
73
+ }
70
74
71
75
// Copy platform specific files in platforms dir
72
76
let platformProjectService = platformData . platformProjectService ;
You can’t perform that action at this time.
0 commit comments