Skip to content

Commit

Permalink
fix(@angular/cli): clarify optional migration instructions during ng …
Browse files Browse the repository at this point in the history
…update

The instructions for when optional migrations are present within an updated
package have been adjusted. A sentence has been added to mention that
optional migrations can be executed after the update process if preferred
and can be skipped for now.
  • Loading branch information
clydin committed May 13, 2024
1 parent 88f73eb commit 0ead36d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/angular/cli/src/commands/update/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,9 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
numberOfMigrations > 1 ? 's' : ''
} that can be executed.`,
);
logger.info(
'Optional migrations may be skipped and executed after the update process if preferred.',
);
logger.info(''); // Extra trailing newline.

if (!isTTY()) {
Expand Down

0 comments on commit 0ead36d

Please sign in to comment.