We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ng update
1 parent c3adf11 commit c15708dCopy full SHA for c15708d
packages/angular/cli/src/commands/update/cli.ts
@@ -387,16 +387,16 @@ export class UpdateCommandModule extends CommandModule<UpdateCommandArgs> {
387
logger.info(' ' + description.join('.\n '));
388
}
389
390
- const result = await this.executeSchematic(
+ const { success, files } = await this.executeSchematic(
391
workflow,
392
migration.collection.name,
393
migration.name,
394
);
395
- if (!result.success) {
+ if (!success) {
396
return 1;
397
398
399
- logger.info(' Migration completed.');
+ logger.info(` Migration completed (${files.size} files modified).`);
400
401
// Commit migration
402
if (commit) {
0 commit comments