[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: update repository url (#239)

authored by

Bjorn Lu and committed by
GitHub
(Feb 25, 2025, 10:32 AM -0600) 5529c890 d6d9ce79

+10 -10
+1 -1
examples/basic/spinner-ci.ts
··· 7 7 * - There will be no loading dots animation, instead it will be always `...` 8 8 * - Instead of erase the previous message, action that is blocked during CI, it will just write a new one. 9 9 * 10 - * Issue: https://github.com/natemoo-re/clack/issues/168 10 + * Issue: https://github.com/bombshell-dev/clack/issues/168 11 11 */ 12 12 import * as p from '@clack/prompts'; 13 13
+3 -3
packages/core/package.json
··· 15 15 "types": "./dist/index.d.ts", 16 16 "repository": { 17 17 "type": "git", 18 - "url": "https://github.com/natemoo-re/clack", 18 + "url": "git+https://github.com/bombshell-dev/clack.git", 19 19 "directory": "packages/core" 20 20 }, 21 21 "bugs": { 22 - "url": "https://github.com/natemoo-re/clack/issues" 22 + "url": "https://github.com/bombshell-dev/clack/issues" 23 23 }, 24 - "homepage": "https://github.com/natemoo-re/clack/tree/main/packages/core#readme", 24 + "homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/core#readme", 25 25 "files": ["dist", "CHANGELOG.md"], 26 26 "keywords": [ 27 27 "ask",
+1 -1
packages/core/src/utils/index.ts
··· 61 61 input.off('keypress', clear); 62 62 if (hideCursor) output.write(cursor.show); 63 63 64 - // Prevent Windows specific issues: https://github.com/natemoo-re/clack/issues/176 64 + // Prevent Windows specific issues: https://github.com/bombshell-dev/clack/issues/176 65 65 if (input.isTTY && !isWindows) input.setRawMode(false); 66 66 67 67 // @ts-expect-error fix for https://github.com/nodejs/node/issues/31762#issuecomment-1441223907
+2 -2
packages/prompts/README.md
··· 2 2 3 3 Effortlessly build beautiful command-line apps 🪄 [Try the demo](https://stackblitz.com/edit/clack-prompts?file=index.js) 4 4 5 - ![clack-prompt](https://github.com/natemoo-re/clack/blob/main/.github/assets/clack-demo.gif) 5 + ![clack-prompt](https://github.com/bombshell-dev/clack/blob/main/.github/assets/clack-demo.gif) 6 6 7 7 --- 8 8 ··· 204 204 stream.message((function *() { yield 'Hello'; yield ", World" })(), { symbol: color.cyan('~') }); 205 205 ``` 206 206 207 - [clack-log-prompts](https://github.com/natemoo-re/clack/blob/main/.github/assets/clack-logs.png) 207 + [clack-log-prompts](https://github.com/bombshell-dev/clack/blob/main/.github/assets/clack-logs.png)
+3 -3
packages/prompts/package.json
··· 15 15 "types": "./dist/index.d.ts", 16 16 "repository": { 17 17 "type": "git", 18 - "url": "https://github.com/natemoo-re/clack", 18 + "url": "git+https://github.com/bombshell-dev/clack.git", 19 19 "directory": "packages/prompts" 20 20 }, 21 21 "bugs": { 22 - "url": "https://github.com/natemoo-re/clack/issues" 22 + "url": "https://github.com/bombshell-dev/clack/issues" 23 23 }, 24 - "homepage": "https://github.com/natemoo-re/clack/tree/main/packages/prompts#readme", 24 + "homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/prompts#readme", 25 25 "files": ["dist", "CHANGELOG.md"], 26 26 "author": { 27 27 "name": "Nate Moore",