Skip to content

Commit

Permalink
fix: πŸ› Fixed occasional duplication of progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
jsimck committed Feb 13, 2022
1 parent 7decf8f commit 05eed21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/webpack/plugins/ProgressPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ProgressTracker {
this._percentageTracker[name] = percentage;
const normPercentage = this._getPercentage();

if (this._isPending()) {
if (percentage === 0 && this._isPending()) {
this._start();
}

Expand Down

0 comments on commit 05eed21

Please sign in to comment.