[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 (#562)

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

authored by

bombshell-bot[bot]
bombshell-bot[bot]
and committed by
GitHub
(Jun 19, 2026, 12:52 PM -0500) 0e700562 e1b6ee71

+41 -40
-18
.changeset/better-hats-start.md
··· 1 - --- 2 - "@clack/prompts": minor 3 - --- 4 - 5 - Updates default formatter of `note()` to note dim lines anymore 6 - 7 - If you want the old behavior, provide a `format()` function: 8 - 9 - ```diff 10 - import { note } from '@clack/prompts'; 11 - +import { styleText } from 'node:util'; 12 - 13 - note( 14 - 'You can edit the file src/index.jsx', 15 - 'Next steps.' 16 - + { format: (text) => styleText('dim', text) } 17 - ); 18 - ```
-5
.changeset/calm-feet-lead.md
··· 1 - --- 2 - "@clack/prompts": minor 3 - --- 4 - 5 - Add keyboard instruction footers to `select`, `multiselect`, and `groupMultiselect` in the active state, matching autocomplete. No option — always shown.
-5
.changeset/password-empty-submit.md
··· 1 - --- 2 - "@clack/core": patch 3 - --- 4 - 5 - Fix `password` prompt resolving to `undefined` on empty submit. It now normalizes an empty submission to `""`, matching the `text` prompt behavior and the documented `Promise<string | symbol>` return type.
-10
.changeset/ten-vans-stand.md
··· 1 - --- 2 - "@clack/core": patch 3 - --- 4 - 5 - fix: only submit multi-line prompt when double-return happens at end of input. 6 - 7 - Also fixes two minor things: 8 - 9 - - Initial value is used as initial user input for multi-line prompts 10 - - Cursor is placed at the end when there is initial input
+13
packages/core/CHANGELOG.md
··· 1 1 # @clack/core 2 2 3 + ## 1.4.2 4 + 5 + ### Patch Changes 6 + 7 + - [#561](https://github.com/bombshell-dev/clack/pull/561) [`2f2b52f`](https://github.com/bombshell-dev/clack/commit/2f2b52f77cbfa9af618c6d929249ab8395fc37a1) Thanks [@avallete](https://github.com/avallete)! - Fix `password` prompt resolving to `undefined` on empty submit. It now normalizes an empty submission to `""`, matching the `text` prompt behavior and the documented `Promise<string | symbol>` return type. 8 + 9 + - [#569](https://github.com/bombshell-dev/clack/pull/569) [`e1b6ee7`](https://github.com/bombshell-dev/clack/commit/e1b6ee71a76e17a3c33ba7ee6e5fb34e886233bb) Thanks [@43081j](https://github.com/43081j)! - fix: only submit multi-line prompt when double-return happens at end of input. 10 + 11 + Also fixes two minor things: 12 + 13 + - Initial value is used as initial user input for multi-line prompts 14 + - Cursor is placed at the end when there is initial input 15 + 3 16 ## 1.4.1 4 17 5 18 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@clack/core", 3 - "version": "1.4.1", 3 + "version": "1.4.2", 4 4 "type": "module", 5 5 "main": "./dist/index.mjs", 6 6 "module": "./dist/index.mjs",
+26
packages/prompts/CHANGELOG.md
··· 1 1 # @clack/prompts 2 2 3 + ## 1.6.0 4 + 5 + ### Minor Changes 6 + 7 + - [#568](https://github.com/bombshell-dev/clack/pull/568) [`f87933f`](https://github.com/bombshell-dev/clack/commit/f87933fb7b3f4c401b9e51a152b95cb8e7200fe5) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Updates default formatter of `note()` to note dim lines anymore 8 + 9 + If you want the old behavior, provide a `format()` function: 10 + 11 + ```diff 12 + import { note } from '@clack/prompts'; 13 + +import { styleText } from 'node:util'; 14 + 15 + note( 16 + 'You can edit the file src/index.jsx', 17 + 'Next steps.' 18 + + { format: (text) => styleText('dim', text) } 19 + ); 20 + ``` 21 + 22 + - [#567](https://github.com/bombshell-dev/clack/pull/567) [`cc6aab5`](https://github.com/bombshell-dev/clack/commit/cc6aab50186cff8a02dc98e9cfd3897c29a33b15) Thanks [@dreyfus92](https://github.com/dreyfus92)! - Add keyboard instruction footers to `select`, `multiselect`, and `groupMultiselect` in the active state, matching autocomplete. No option — always shown. 23 + 24 + ### Patch Changes 25 + 26 + - Updated dependencies [[`2f2b52f`](https://github.com/bombshell-dev/clack/commit/2f2b52f77cbfa9af618c6d929249ab8395fc37a1), [`e1b6ee7`](https://github.com/bombshell-dev/clack/commit/e1b6ee71a76e17a3c33ba7ee6e5fb34e886233bb)]: 27 + - @clack/core@1.4.2 28 + 3 29 ## 1.5.1 4 30 5 31 ### Patch Changes
+1 -1
packages/prompts/package.json
··· 1 1 { 2 2 "name": "@clack/prompts", 3 - "version": "1.5.1", 3 + "version": "1.6.0", 4 4 "type": "module", 5 5 "main": "./dist/index.mjs", 6 6 "module": "./dist/index.mjs",