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

authored by

Christian Preston and committed by
GitHub
(Aug 9, 2023, 2:32 PM EDT) e08e7b5b 61313284

+24 -29
-5
.changeset/eight-bikes-repair.md
··· 1 - --- 2 - '@clack/prompts': minor 3 - --- 4 - 5 - add maxItems option to select prompt
-5
.changeset/loud-bugs-move.md
··· 1 - --- 2 - '@clack/prompts': minor 3 - --- 4 - 5 - added a new method called `spinner.message(msg: string)`
-5
.changeset/ninety-ravens-smoke.md
··· 1 - --- 2 - '@clack/prompts': patch 3 - --- 4 - 5 - Fix `spinner` conflict with terminal on error between `spinner.start()` and `spinner.stop()`
-5
.changeset/odd-avocados-smile.md
··· 1 - --- 2 - '@clack/prompts': patch 3 - --- 4 - 5 - Fixes cases where the note title length was miscalculated due to ansi characters
-5
.changeset/twelve-shrimps-report.md
··· 1 - --- 2 - '@clack/core': patch 3 - --- 4 - 5 - fix: restore raw mode on unblock
+6
packages/core/CHANGELOG.md
··· 1 1 # @clack/core 2 2 3 + ## 0.3.3 4 + 5 + ### Patch Changes 6 + 7 + - cd79076: fix: restore raw mode on unblock 8 + 3 9 ## 0.3.2 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@clack/core", 3 - "version": "0.3.2", 3 + "version": "0.3.3", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs",
+14
packages/prompts/CHANGELOG.md
··· 1 1 # @clack/prompts 2 2 3 + ## 0.7.0 4 + 5 + ### Minor Changes 6 + 7 + - b27a701: add maxItems option to select prompt 8 + - 89371be: added a new method called `spinner.message(msg: string)` 9 + 10 + ### Patch Changes 11 + 12 + - 52183c4: Fix `spinner` conflict with terminal on error between `spinner.start()` and `spinner.stop()` 13 + - ab51d29: Fixes cases where the note title length was miscalculated due to ansi characters 14 + - Updated dependencies [cd79076] 15 + - @clack/core@0.3.3 16 + 3 17 ## 0.6.3 4 18 5 19 ### Patch Changes
+2 -2
packages/prompts/package.json
··· 1 1 { 2 2 "name": "@clack/prompts", 3 - "version": "0.6.3", 3 + "version": "0.7.0", 4 4 "type": "module", 5 5 "main": "./dist/index.cjs", 6 6 "module": "./dist/index.mjs", ··· 53 53 "prepack": "pnpm build" 54 54 }, 55 55 "dependencies": { 56 - "@clack/core": "^0.3.2", 56 + "@clack/core": "^0.3.3", 57 57 "picocolors": "^1.0.0", 58 58 "sisteransi": "^1.0.5" 59 59 },
+1 -1
pnpm-lock.yaml
··· 59 59 60 60 packages/prompts: 61 61 specifiers: 62 - '@clack/core': ^0.3.2 62 + '@clack/core': ^0.3.3 63 63 is-unicode-supported: ^1.3.0 64 64 picocolors: ^1.0.0 65 65 sisteransi: ^1.0.5