[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: member name in TextPrompt rendering (#465)

Co-authored-by: James Garbutt <43081j@users.noreply.github.com>

authored by

Utsav Bhandari
James Garbutt
and committed by
GitHub
(Feb 12, 2026, 10:01 AM UTC) 25331801 6404dc10

+6 -1
+5
.changeset/cool-forks-flash.md
··· 1 + --- 2 + "@clack/core": patch 3 + --- 4 + 5 + Update the core README.md to reflect the internal member name change when rendering a TextPrompt (`userInputWithCursor`).
+1 -1
packages/core/README.md
··· 11 11 12 12 const p = new TextPrompt({ 13 13 render() { 14 - return `What's your name?\n${this.valueWithCursor}`; 14 + return `What's your name?\n${this.userInputWithCursor}`; 15 15 }, 16 16 }); 17 17