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

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

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
(Apr 7, 2025, 9:53 PM -0500) 5de191fc 5dfce8ab

+29 -25
-5
.changeset/afraid-socks-deny.md
··· 1 - --- 2 - "@clack/prompts": patch 3 - --- 4 - 5 - Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
-6
.changeset/free-wasps-decide.md
··· 1 - --- 2 - "@clack/prompts": patch 3 - "@clack/core": patch 4 - --- 5 - 6 - Adds a new `selectableGroups` boolean to the group multi-select prompt. Using `selectableGroups: false` will disable the ability to select a top-level group, but still allow every child to be selected individually.
-5
.changeset/hot-turkeys-knock.md
··· 1 - --- 2 - "@clack/core": patch 3 - --- 4 - 5 - Fixes an edge case for placeholder values. Previously, when pressing `enter` on an empty prompt, placeholder values would be ignored. Now, placeholder values are treated as the prompt value.
-5
.changeset/lemon-monkeys-help.md
··· 1 - --- 2 - "@clack/core": patch 3 - --- 4 - 5 - Fix "TTY initialization failed: uv_tty_init returned EBADF (bad file descriptor)" error happening on Windows for non-tty terminals.
+8
packages/core/CHANGELOG.md
··· 1 1 # @clack/core 2 2 3 + ## 0.4.2 4 + 5 + ### Patch Changes 6 + 7 + - 30aa7ed: Adds a new `selectableGroups` boolean to the group multi-select prompt. Using `selectableGroups: false` will disable the ability to select a top-level group, but still allow every child to be selected individually. 8 + - 5dfce8a: Fixes an edge case for placeholder values. Previously, when pressing `enter` on an empty prompt, placeholder values would be ignored. Now, placeholder values are treated as the prompt value. 9 + - f574297: Fix "TTY initialization failed: uv_tty_init returned EBADF (bad file descriptor)" error happening on Windows for non-tty terminals. 10 + 3 11 ## 0.4.1 4 12 5 13 ### Patch Changes
+5 -2
packages/core/package.json
··· 1 1 { 2 2 "name": "@clack/core", 3 - "version": "0.4.1", 3 + "version": "0.4.2", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs", ··· 22 22 "url": "https://github.com/bombshell-dev/clack/issues" 23 23 }, 24 24 "homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/core#readme", 25 - "files": ["dist", "CHANGELOG.md"], 25 + "files": [ 26 + "dist", 27 + "CHANGELOG.md" 28 + ], 26 29 "keywords": [ 27 30 "ask", 28 31 "clack",
+11
packages/prompts/CHANGELOG.md
··· 1 1 # @clack/prompts 2 2 3 + ## 0.10.1 4 + 5 + ### Patch Changes 6 + 7 + - 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property. 8 + - 30aa7ed: Adds a new `selectableGroups` boolean to the group multi-select prompt. Using `selectableGroups: false` will disable the ability to select a top-level group, but still allow every child to be selected individually. 9 + - Updated dependencies [30aa7ed] 10 + - Updated dependencies [5dfce8a] 11 + - Updated dependencies [f574297] 12 + - @clack/core@0.4.2 13 + 3 14 ## 0.10.0 4 15 5 16 ### Minor Changes
+5 -2
packages/prompts/package.json
··· 1 1 { 2 2 "name": "@clack/prompts", 3 - "version": "0.10.0", 3 + "version": "0.10.1", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs", ··· 22 22 "url": "https://github.com/bombshell-dev/clack/issues" 23 23 }, 24 24 "homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/prompts#readme", 25 - "files": ["dist", "CHANGELOG.md"], 25 + "files": [ 26 + "dist", 27 + "CHANGELOG.md" 28 + ], 26 29 "author": { 27 30 "name": "Nate Moore", 28 31 "email": "nate@natemoo.re",