Skip to content

Commit 3245794

Browse files
clydinKeen Yee Liau
authored and
Keen Yee Liau
committed
fix(@schematics/update): show executing package during migrations
Partially addresses #14390
1 parent b7fc612 commit 3245794

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

+2
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)