@@ -81,7 +81,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
8181 protected override shouldReportAnalytics = false ;
8282
8383 command = 'update [packages..]' ;
84- describe = 'Updates your workspace and its dependencies. See https://update.angular.io /.' ;
84+ describe = 'Updates your workspace and its dependencies. See https://update.angular.dev /.' ;
8585 longDescriptionPath = join ( __dirname , 'long-description.md' ) ;
8686
8787 builder ( localYargs : Argv ) : Argv < UpdateCommandArgs > {
@@ -716,7 +716,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
716716 // Example @angular /core skipped version 3, @angular/cli skipped versions 2-5.
717717 logger . error (
718718 `Updating multiple major versions of '${ name } ' at once is not supported. Please migrate each major version individually.\n` +
719- `For more information about the update process, see https://update.angular.io /.` ,
719+ `For more information about the update process, see https://update.angular.dev /.` ,
720720 ) ;
721721 } else {
722722 const nextMajorVersionFromCurrent = currentMajorVersion + 1 ;
@@ -725,7 +725,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
725725 `Updating multiple major versions of '${ name } ' at once is not supported. Please migrate each major version individually.\n` +
726726 `Run 'ng update ${ name } @${ nextMajorVersionFromCurrent } ' in your workspace directory ` +
727727 `to update to latest '${ nextMajorVersionFromCurrent } .x' version of '${ name } '.\n\n` +
728- `For more information about the update process, see https://update.angular.io /?v=${ currentMajorVersion } .0-${ nextMajorVersionFromCurrent } .0` ,
728+ `For more information about the update process, see https://update.angular.dev /?v=${ currentMajorVersion } .0-${ nextMajorVersionFromCurrent } .0` ,
729729 ) ;
730730 }
731731
0 commit comments