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

Revert example

Oskar Löfgren (Mar 6, 2023, 12:49 AM +0100) 45b6f299 fafbc21f

+1 -2
+1 -2
examples/basic/index.ts
··· 15 15 p.text({ 16 16 message: 'Where should we create your project?', 17 17 placeholder: './sparkling-solid', 18 - validate: async (value) => { 19 - await setTimeout(299); 18 + validate: (value) => { 20 19 if (!value) return 'Please enter a path.'; 21 20 if (value[0] !== '.') return 'Please enter a relative path.'; 22 21 },