[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove extra newline

James Garbutt (Feb 25, 2026, 10:27 PM UTC) b53162cb 3d2ca73c

+2 -2
+2 -2
packages/prompts/src/spinner.ts
··· 68 68 ? styleText('red', S_STEP_CANCEL) 69 69 : styleText('red', S_STEP_ERROR); 70 70 if (indicator === 'timer') { 71 - return `${prefix}${step} ${this.message} ${this.getFormattedTimer()}\n`; 71 + return `${prefix}${step} ${this.message} ${this.getFormattedTimer()}`; 72 72 } else { 73 - return `${prefix}${step} ${this.message}\n`; 73 + return `${prefix}${step} ${this.message}`; 74 74 } 75 75 } 76 76 const frame = styleFn(frames[this.frameIndex]);