[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.

[ci] format

authored by

natemoo-re and committed by
github-actions[bot]
(Mar 5, 2023, 11:40 PM UTC) ba6294e4 c96eda59

+2 -1
+2 -1
packages/core/src/prompts/prompt.ts
··· 206 206 } 207 207 208 208 private restoreCursor() { 209 - const lines = wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1; 209 + const lines = 210 + wrap(this._prevFrame, process.stdout.columns, { hard: true }).split('\n').length - 1; 210 211 this.output.write(cursor.move(-999, lines * -1)); 211 212 } 212 213