Skip to content

Commit 4a925c8

Browse files
[ci] release (#221)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9dff6a5 commit 4a925c8

File tree

9 files changed

+30
-31
lines changed

9 files changed

+30
-31
lines changed

.changeset/moody-hairs-learn.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/orange-olives-yell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/red-glasses-grin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/seven-fireants-cover.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slimy-dolphins-press.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/core/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @clack/core
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- 8093f3c: Adds `Error` support to the `validate` function
8+
- e5ba09a: Fixes a cursor display bug in terminals that do not support the "hidden" escape sequence. See [Issue #127](https://github.com/bombshell-dev/clack/issues/127).
9+
- 8cba8e3: Fixes a rendering bug with cursor positions for `TextPrompt`
10+
311
## 0.4.0
412

513
### Minor Changes
@@ -27,7 +35,6 @@
2735
2836
- 801246b: Adds a new `signal` option to support programmatic prompt cancellation with an [abort controller](https://kettanaito.com/blog/dont-sleep-on-abort-controller).
2937

30-
3138
- a83d2f8: Updates default keybindings to support Vim motion shortcuts and map the `escape` key to cancel (`ctrl+c`).
3239

3340
| alias | action |

packages/core/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clack/core",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -22,7 +22,10 @@
2222
"url": "https://github.com/natemoo-re/clack/issues"
2323
},
2424
"homepage": "https://github.com/natemoo-re/clack/tree/main/packages/core#readme",
25-
"files": ["dist", "CHANGELOG.md"],
25+
"files": [
26+
"dist",
27+
"CHANGELOG.md"
28+
],
2629
"keywords": [
2730
"ask",
2831
"clack",

packages/prompts/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @clack/prompts
22

3+
## 0.9.1
4+
5+
### Patch Changes
6+
7+
- 8093f3c: Adds `Error` support to the `validate` function
8+
- 98925e3: Exports the `Option` type and improves JSDocannotations
9+
- 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in [`stripVTControlCharacters`](https://nodejs.org/docs/latest/api/util.html#utilstripvtcontrolcharactersstr) utility.
10+
- Updated dependencies [8093f3c]
11+
- Updated dependencies [e5ba09a]
12+
- Updated dependencies [8cba8e3]
13+
- @clack/core@0.4.1
14+
315
## 0.9.0
416

517
### Minor Changes

packages/prompts/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clack/prompts",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"type": "module",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -22,7 +22,10 @@
2222
"url": "https://github.com/natemoo-re/clack/issues"
2323
},
2424
"homepage": "https://github.com/natemoo-re/clack/tree/main/packages/prompts#readme",
25-
"files": ["dist", "CHANGELOG.md"],
25+
"files": [
26+
"dist",
27+
"CHANGELOG.md"
28+
],
2629
"author": {
2730
"name": "Nate Moore",
2831
"email": "[email protected]",

0 commit comments

Comments
 (0)