We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2829d6d commit 6990981Copy full SHA for 6990981
cli/unstable_progress_bar.ts
@@ -188,7 +188,7 @@ export class ProgressBar {
188
.pipeTo(writable, { preventClose: this.#options.keepOpen })
189
.catch(() => clearInterval(this.#id));
190
this.#writer = stream.writable.getWriter();
191
- this.#id = setInterval(() => this.#print(), 200);
+ this.#id = setInterval(() => this.#print(), 1000);
192
this.#startTime = performance.now();
193
this.#lastTime = this.#startTime;
194
this.#lastValue = this.#options.value;
0 commit comments