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

[ci] release (alpha) (#406)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

authored by

bombshell-bot[bot]
github-actions[bot]
and committed by
GitHub
(Nov 24, 2025, 3:30 PM UTC) 08b58f58 6176ced6

+60 -2
+9
.changeset/pre.json
··· 9 9 }, 10 10 "changesets": [ 11 11 "afraid-socks-deny", 12 + "afraid-worms-help", 12 13 "better-hotels-fall", 13 14 "bright-hornets-destroy", 15 + "busy-baths-work", 14 16 "calm-trains-camp", 17 + "chatty-islands-move", 15 18 "crazy-ducks-shine", 16 19 "cruel-hairs-swim", 17 20 "curvy-seals-sit", 18 21 "dirty-papayas-happen", 19 22 "dull-singers-mate", 20 23 "empty-buses-wonder", 24 + "evil-rats-turn", 21 25 "famous-turkeys-burn", 26 + "fine-swans-retire", 22 27 "five-chairs-poke", 23 28 "floppy-laws-tan", 24 29 "free-wasps-decide", ··· 35 40 "legal-bags-tie", 36 41 "lemon-monkeys-help", 37 42 "light-waves-jog", 43 + "little-ghosts-retire", 38 44 "lucky-dragons-think", 39 45 "mean-mice-train", 40 46 "mean-turkeys-help", 41 47 "mean-years-remain", 42 48 "moody-baboons-greet", 43 49 "nasty-parrots-laugh", 50 + "odd-bikes-nail", 44 51 "orange-deers-battle", 52 + "plenty-snakes-ring", 45 53 "rich-plants-call", 46 54 "sharp-lemons-build", 47 55 "short-squids-battle", ··· 52 60 "strong-ravens-greet", 53 61 "sweet-deers-smell", 54 62 "tall-cows-fold", 63 + "tall-keys-allow", 55 64 "thin-socks-travel", 56 65 "three-ideas-refuse", 57 66 "tough-crews-flow",
+8
packages/core/CHANGELOG.md
··· 1 1 # @clack/core 2 2 3 + ## 1.0.0-alpha.7 4 + 5 + ### Patch Changes 6 + 7 + - 0718b07: fix: export `*Options` types for prompts. 8 + - 4ba2d78: Support short terminal windows when re-rendering by accounting for off-screen lines 9 + - acc4c3a: Add a new `withGuide` option to all prompts to disable the default clack border 10 + 3 11 ## 1.0.0-alpha.6 4 12 5 13 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@clack/core", 3 - "version": "1.0.0-alpha.6", 3 + "version": "1.0.0-alpha.7", 4 4 "type": "module", 5 5 "main": "./dist/index.mjs", 6 6 "module": "./dist/index.mjs",
+41
packages/prompts/CHANGELOG.md
··· 1 1 # @clack/prompts 2 2 3 + ## 1.0.0-alpha.7 4 + 5 + ### Minor Changes 6 + 7 + - 38019c7: Updates the API for stopping spinners and progress bars to be clearer 8 + 9 + Previously, both the spinner and progress bar components used a single `stop` method that accepted a code to indicate success, cancellation, or error. This update separates these into distinct methods: `stop()`, `cancel()`, and `error()`: 10 + 11 + ```diff 12 + const spinner = prompts.spinner(); 13 + spinner.start(); 14 + 15 + // Cancelling a spinner 16 + - spinner.stop(undefined, 1); 17 + + spinner.cancel(); 18 + 19 + // Stopping with an error 20 + - spinner.stop(undefined, 2); 21 + + spinner.error(); 22 + ``` 23 + 24 + As before, you can pass a message to each method to customize the output displayed: 25 + 26 + ```js 27 + spinner.cancel("Operation cancelled by user"); 28 + progressBar.error("An error occurred during processing"); 29 + ``` 30 + 31 + ### Patch Changes 32 + 33 + - 4d1d83b: Fixes rendering of multi-line messages and options in select prompt. 34 + - 6176ced: Add withGuide support to note prompt 35 + - 69681ea: Strip destructive ANSI codes from task log messages. 36 + - b0fa7d8: Add support for wrapped messages in multi line prompts 37 + - 7530af0: Fixes wrapping of cancelled and success messages of select prompt 38 + - acc4c3a: Add a new `withGuide` option to all prompts to disable the default clack border 39 + - Updated dependencies [0718b07] 40 + - Updated dependencies [4ba2d78] 41 + - Updated dependencies [acc4c3a] 42 + - @clack/core@1.0.0-alpha.7 43 + 3 44 ## 1.0.0-alpha.6 4 45 5 46 ### Minor Changes
+1 -1
packages/prompts/package.json
··· 1 1 { 2 2 "name": "@clack/prompts", 3 - "version": "1.0.0-alpha.6", 3 + "version": "1.0.0-alpha.7", 4 4 "type": "module", 5 5 "main": "./dist/index.mjs", 6 6 "module": "./dist/index.mjs",