Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

Commit

Permalink
fix(@angular-devkit/build-angular): emit success false on dev-server …
Browse files Browse the repository at this point in the history
…rebuilds
  • Loading branch information
filipesilva committed May 18, 2018
1 parent cffb225 commit d0d6a1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export class DevServerBuilder implements Builder<DevServerBuilderOptions> {
this.context.logger.info(statsErrorsToString(json, statsConfig));
}
}
obs.next({ success: true });
obs.next({ success: !stats.hasErrors() });

if (first && options.open) {
first = false;
Expand Down

0 comments on commit d0d6a1e

Please sign in to comment.