[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 single lint warning (#516)

authored by

Willow (GHOST) and committed by
GitHub
(Apr 23, 2026, 8:56 PM +0100) c51243b2 970268be

+1 -1
+1 -1
packages/core/test/prompts/date.test.ts
··· 45 45 instance.prompt(); 46 46 expect(instance.userInput).to.equal('2025/01/15'); 47 47 expect(instance.value).toBeInstanceOf(Date); 48 - expect(instance.value!.toISOString().slice(0, 10)).to.equal('2025-01-15'); 48 + expect(instance.value?.toISOString().slice(0, 10)).to.equal('2025-01-15'); 49 49 }); 50 50 51 51 test('left/right navigates between segments', () => {