@markuplint/cli-utils 4.4.2 → 4.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -3
- package/lib/prompt.js +0 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [4.4.
|
|
6
|
+
## [4.4.4](https://github.com/markuplint/markuplint/compare/@markuplint/cli-utils@4.4.3...@markuplint/cli-utils@4.4.4) (2024-09-02)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @markuplint/cli-utils
|
|
8
9
|
|
|
9
|
-
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
|
|
14
|
+
## [4.4.3](https://github.com/markuplint/markuplint/compare/@markuplint/cli-utils@4.4.2...@markuplint/cli-utils@4.4.3) (2024-06-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @markuplint/cli-utils
|
|
17
|
+
|
|
18
|
+
## [4.4.2](https://github.com/markuplint/markuplint/compare/@markuplint/cli-utils@4.4.1...@markuplint/cli-utils@4.4.2) (2024-06-09)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
15
21
|
|
|
22
|
+
- fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
|
|
16
23
|
|
|
17
24
|
## [4.4.1](https://github.com/markuplint/markuplint/compare/@markuplint/cli-utils@4.4.1-alpha.0...@markuplint/cli-utils@4.4.1) (2024-05-04)
|
|
18
25
|
|
package/lib/prompt.js
CHANGED
|
@@ -30,7 +30,6 @@ export async function multiSelect(question) {
|
|
|
30
30
|
return res['__Q__'];
|
|
31
31
|
}
|
|
32
32
|
export async function input(question, validation) {
|
|
33
|
-
// eslint-disable-next-line no-constant-condition
|
|
34
33
|
while (true) {
|
|
35
34
|
const _res = await Enquirer.prompt({
|
|
36
35
|
message: question,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/cli-utils",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"description": "Utilities for CLI of Markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/cli-color": "2.0.6"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "77cd5a25d5cf28c83253b7bfe02cd25b54e236b0"
|
|
36
36
|
}
|