Skip to content

Commit 9ed10ed

Browse files
clydinKeen Yee Liau
authored andcommitted
fix(@schematics/update): show executing package during migrations
Partially addresses #14390
1 parent e406f00 commit 9ed10ed

File tree

1 file changed

+2
-0
lines changed
  • packages/schematics/update/migrate

1 file changed

+2
-0
lines changed

packages/schematics/update/migrate/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ export default function(options: PostUpdateSchema): Rule {
8282
});
8383

8484
if (schematicsToRun.length > 0) {
85+
context.logger.info(`** Executing migrations for package '${options.package}' **`);
86+
8587
const rules = schematicsToRun.map(x => externalSchematic(options.collection, x.name, {}));
8688

8789
return chain(rules);

0 commit comments

Comments
 (0)