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 8a6315e commit 9d0e0dcCopy full SHA for 9d0e0dc
packages/prompts/src/index.ts
@@ -670,7 +670,7 @@ export const spinner = () => {
670
process.stdout.write(`${color.gray(S_BAR)}\n`);
671
let frameIndex = 0;
672
let dotsTimer = 0;
673
- registerHooks()
+ registerHooks();
674
loop = setInterval(() => {
675
const frame = color.magenta(frames[frameIndex]);
676
const loadingDots = '.'.repeat(Math.floor(dotsTimer)).slice(0, 3);
@@ -695,7 +695,7 @@ export const spinner = () => {
695
process.stdout.write(cursor.move(-999, 0));
696
process.stdout.write(erase.down(1));
697
process.stdout.write(`${step} ${_message}\n`);
698
- clearHooks()
+ clearHooks();
699
unblock();
700
};
701
0 commit comments