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

authored by

Nate Moore and committed by
GitHub
(Feb 24, 2023, 7:24 PM -0600) 2be262bf 0d350fdd

+27 -20
-6
.changeset/dull-boats-drum.md
··· 1 - --- 2 - '@clack/prompts': minor 3 - '@clack/core': patch 4 - --- 5 - 6 - add `groupMultiselect` prompt
-5
.changeset/hot-candles-repeat.md
··· 1 - --- 2 - "@clack/prompts": minor 3 - --- 4 - 5 - Add `log` APIs. Supports `log.info`, `log.success`, `log.warn`, and `log.error`. For low-level control, `log.message` is also exposed.
-5
.changeset/tasty-comics-warn.md
··· 1 - --- 2 - '@clack/core': minor 3 - --- 4 - 5 - Add `GroupMultiSelect` prompt
+10
packages/core/CHANGELOG.md
··· 1 1 # @clack/core 2 2 3 + ## 0.3.0 4 + 5 + ### Minor Changes 6 + 7 + - 8a4a12f: Add `GroupMultiSelect` prompt 8 + 9 + ### Patch Changes 10 + 11 + - 8a4a12f: add `groupMultiselect` prompt 12 + 3 13 ## 0.2.1 4 14 5 15 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@clack/core", 3 - "version": "0.2.1", 3 + "version": "0.3.0", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs",
+13
packages/prompts/CHANGELOG.md
··· 1 1 # @clack/prompts 2 2 3 + ## 0.6.0 4 + 5 + ### Minor Changes 6 + 7 + - 8a4a12f: add `groupMultiselect` prompt 8 + - 165a1b3: Add `log` APIs. Supports `log.info`, `log.success`, `log.warn`, and `log.error`. For low-level control, `log.message` is also exposed. 9 + 10 + ### Patch Changes 11 + 12 + - Updated dependencies [8a4a12f] 13 + - Updated dependencies [8a4a12f] 14 + - @clack/core@0.3.0 15 + 3 16 ## 0.5.1 4 17 5 18 ### Patch Changes
+2 -2
packages/prompts/package.json
··· 1 1 { 2 2 "name": "@clack/prompts", 3 - "version": "0.5.1", 3 + "version": "0.6.0", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs", ··· 52 52 "build": "unbuild" 53 53 }, 54 54 "dependencies": { 55 - "@clack/core": "^0.2.1", 55 + "@clack/core": "^0.3.0", 56 56 "picocolors": "^1.0.0", 57 57 "sisteransi": "^1.0.5" 58 58 },
+1 -1
pnpm-lock.yaml
··· 59 59 60 60 packages/prompts: 61 61 specifiers: 62 - '@clack/core': ^0.2.1 62 + '@clack/core': ^0.3.0 63 63 is-unicode-supported: ^1.3.0 64 64 picocolors: ^1.0.0 65 65 sisteransi: ^1.0.5