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

chore: fix lint around control chars (#421)

authored by

James Garbutt and committed by
GitHub
(Nov 24, 2025, 3:36 PM UTC) 703f55fd 08b58f58

+1
+1
packages/prompts/src/task-log.ts
··· 37 37 } 38 38 39 39 const stripDestructiveANSI = (input: string): string => { 40 + // biome-ignore lint/suspicious/noControlCharactersInRegex: intentional 40 41 return input.replace(/\x1b\[(?:\d+;)*\d*[ABCDEFGHfJKSTsu]|\x1b\[(s|u)/g, ''); 41 42 }; 42 43