Skip to content

Commit 6990981

Browse files
authored
fix(cli/unstable): update interval in ProgressBar (#6402)
1 parent 2829d6d commit 6990981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/unstable_progress_bar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class ProgressBar {
188188
.pipeTo(writable, { preventClose: this.#options.keepOpen })
189189
.catch(() => clearInterval(this.#id));
190190
this.#writer = stream.writable.getWriter();
191-
this.#id = setInterval(() => this.#print(), 200);
191+
this.#id = setInterval(() => this.#print(), 1000);
192192
this.#startTime = performance.now();
193193
this.#lastTime = this.#startTime;
194194
this.#lastValue = this.#options.value;

0 commit comments

Comments
 (0)