Skip to content

Commit 2b24391

Browse files
committed
fix(@angular/cli): show schematics log at start of task phase
1 parent 523d073 commit 2b24391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@angular/cli/models/schematic-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export abstract class SchematicCommand extends Command {
148148
});
149149

150150
workflow.lifeCycle.subscribe(event => {
151-
if (event.kind == 'end' || event.kind == 'workflow-end') {
151+
if (event.kind == 'end' || event.kind == 'post-tasks-start') {
152152
if (!error) {
153153
// Output the logging queue, no error happened.
154154
loggingQueue.forEach(log => this.logger.info(log));

0 commit comments

Comments
 (0)