File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -268,9 +268,10 @@ export class PlatformService implements IPlatformService {
268
268
if ( changeInfo . configChanged || changeInfo . modulesChanged ) {
269
269
this . applyBaseConfigOption ( platformData ) . wait ( ) ;
270
270
platformData . platformProjectService . processConfigurationFilesFromAppResources ( ) . wait ( ) ;
271
- platformData . platformProjectService . interpolateConfigurationFile ( ) . wait ( ) ;
272
271
}
273
272
273
+ platformData . platformProjectService . interpolateConfigurationFile ( ) . wait ( ) ;
274
+
274
275
this . $logger . out ( "Project successfully prepared (" + platform + ")" ) ;
275
276
} ) . future < void > ( ) ( ) ;
276
277
}
Original file line number Diff line number Diff line change @@ -60,16 +60,13 @@ export class ProjectChangesInfo {
60
60
}
61
61
}
62
62
63
- if ( this . $options . bundle !== this . prepareInfo . bundle ) {
64
- this . modulesChanged = true ;
65
- this . prepareInfo . bundle = this . $options . bundle ;
66
- }
67
- if ( this . $options . release !== this . prepareInfo . release ) {
63
+ if ( this . $options . bundle !== this . prepareInfo . bundle || this . $options . release !== this . prepareInfo . release ) {
68
64
this . appFilesChanged = true ;
69
65
this . appResourcesChanged = true ;
70
66
this . modulesChanged = true ;
71
67
this . configChanged = true ;
72
68
this . prepareInfo . release = this . $options . release ;
69
+ this . prepareInfo . bundle = this . $options . bundle ;
73
70
}
74
71
if ( this . modulesChanged || this . appResourcesChanged ) {
75
72
this . configChanged = true ;
You can’t perform that action at this time.
0 commit comments