Skip to content

Commit af065ee

Browse files
[ci] release (alpha)
1 parent 684aa82 commit af065ee

File tree

5 files changed

+53
-5
lines changed

5 files changed

+53
-5
lines changed

.changeset/pre.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,12 @@
77
"@clack/core": "0.4.1",
88
"@clack/prompts": "0.10.0"
99
},
10-
"changesets": []
10+
"changesets": [
11+
"dirty-papayas-happen",
12+
"free-wasps-decide",
13+
"healthy-candles-admire",
14+
"legal-bags-tie",
15+
"lemon-monkeys-help",
16+
"orange-deers-battle"
17+
]
1118
}

packages/core/CHANGELOG.md

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

3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- c713fd5: The package is now distributed as ESM-only. In `v0` releases, the package was dual-published as CJS and ESM.
8+
9+
For existing CJS projects using Node v20+, please see Node's guide on [Loading ECMAScript modules using `require()`](https://nodejs.org/docs/latest-v20.x/api/modules.html#loading-ecmascript-modules-using-require).
10+
11+
### Patch Changes
12+
13+
- 6868c1c: 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.
14+
- a36292b: Fix "TTY initialization failed: uv_tty_init returned EBADF (bad file descriptor)" error happening on Windows for non-tty terminals.
15+
316
## 0.4.1
417

518
### Patch Changes

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.1",
3+
"version": "1.0.0-alpha.0",
44
"type": "module",
55
"main": "./dist/index.mjs",
66
"module": "./dist/index.mjs",
@@ -21,7 +21,10 @@
2121
"url": "https://github.com/bombshell-dev/clack/issues"
2222
},
2323
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/core#readme",
24-
"files": ["dist", "CHANGELOG.md"],
24+
"files": [
25+
"dist",
26+
"CHANGELOG.md"
27+
],
2528
"keywords": [
2629
"ask",
2730
"clack",

packages/prompts/CHANGELOG.md

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

3+
## 1.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- c713fd5: The package is now distributed as ESM-only. In `v0` releases, the package was dual-published as CJS and ESM.
8+
9+
For existing CJS projects using Node v20+, please see Node's guide on [Loading ECMAScript modules using `require()`](https://nodejs.org/docs/latest-v20.x/api/modules.html#loading-ecmascript-modules-using-require).
10+
11+
### Minor Changes
12+
13+
- c45b9fb: Adds support for detecting spinner cancellation via CTRL+C. This allows for graceful handling of user interruptions during long-running operations.
14+
15+
### Patch Changes
16+
17+
- 17342d2: Exposes a new `SpinnerResult` type to describe the return type of `spinner`
18+
- 6868c1c: 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.
19+
- 7a556ad: Updates all prompts to accept a custom `output` and `input` stream
20+
- Updated dependencies [6868c1c]
21+
- Updated dependencies [c713fd5]
22+
- Updated dependencies [a36292b]
23+
- @clack/core@1.0.0-alpha.0
24+
325
## 0.10.0
426

527
### 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.10.0",
3+
"version": "1.0.0-alpha.0",
44
"type": "module",
55
"main": "./dist/index.mjs",
66
"module": "./dist/index.mjs",
@@ -21,7 +21,10 @@
2121
"url": "https://github.com/bombshell-dev/clack/issues"
2222
},
2323
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/prompts#readme",
24-
"files": ["dist", "CHANGELOG.md"],
24+
"files": [
25+
"dist",
26+
"CHANGELOG.md"
27+
],
2528
"author": {
2629
"name": "Nate Moore",
2730
"email": "nate@natemoo.re",

0 commit comments

Comments
 (0)