File tree 1 file changed +3
-1
lines changed
packages/angular/cli/commands
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -525,6 +525,8 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
525
525
if ( success ) {
526
526
if (
527
527
packageName === '@angular/core'
528
+ && options . from
529
+ && + options . from . split ( '.' ) [ 0 ] < 9
528
530
&& ( options . to || packageNode . package . version ) . split ( '.' ) [ 0 ] === '9'
529
531
) {
530
532
this . logger . info ( NG_VERSION_9_POST_MSG ) ;
@@ -675,7 +677,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
675
677
}
676
678
}
677
679
678
- if ( migrations . some ( m => m . package === '@angular/core' && m . to . split ( '.' ) [ 0 ] === '9' ) ) {
680
+ if ( migrations . some ( m => m . package === '@angular/core' && m . to . split ( '.' ) [ 0 ] === '9' && + m . from . split ( '.' ) [ 0 ] < 9 ) ) {
679
681
this . logger . info ( NG_VERSION_9_POST_MSG ) ;
680
682
}
681
683
}
You can’t perform that action at this time.
0 commit comments