Skip to content

Commit cc913e2

Browse files
alan-agius4dgp1130
authored andcommitted
fix(@angular/cli): display post migration message when updating from previous major version
Fixes #17256 (cherry picked from commit 4f50aa0)
1 parent 9b03013 commit cc913e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/angular/cli/commands/update-impl.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,8 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
525525
if (success) {
526526
if (
527527
packageName === '@angular/core'
528+
&& options.from
529+
&& +options.from.split('.')[0] < 9
528530
&& (options.to || packageNode.package.version).split('.')[0] === '9'
529531
) {
530532
this.logger.info(NG_VERSION_9_POST_MSG);
@@ -675,7 +677,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
675677
}
676678
}
677679

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)) {
679681
this.logger.info(NG_VERSION_9_POST_MSG);
680682
}
681683
}

0 commit comments

Comments
 (0)