@qui-cli/qui-cli 5.0.3 → 5.1.0
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 +15 -4
- package/package.json +25 -26
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
## [5.0
|
|
5
|
+
## [5.1.0](https://github.com/battis/qui-cli/compare/qui-cli/5.0.4...qui-cli/5.1.0) (2026-01-19)
|
|
6
6
|
|
|
7
7
|
### Features
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
- **env** support 1Password secret references if @1password/sdk (and 1Password) installed ([ed4570c](https://github.com/battis/qui-cli/commit/ed4570cd5cf19ae34fc03f6b88b01f0ebf72e72d))
|
|
10
|
+
|
|
11
|
+
## [5.0.4](https://github.com/battis/qui-cli/compare/qui-cli/5.0.3...qui-cli/5.0.4) (2026-01-18)
|
|
11
12
|
|
|
12
13
|
### Bug Fixes
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
- compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
|
|
16
|
+
|
|
17
|
+
## [5.0.3](https://github.com/battis/qui-cli/compare/qui-cli/5.0.2...qui-cli/5.0.3) (2026-01-02)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- **shell@3.1.0** disable/enable logging of commands ([d8b6f14](https://github.com/battis/qui-cli/commit/d8b6f14a7ba2452735940a26364426226dca05a5))
|
|
22
|
+
- **colors@3.2.0** add highlighting options for paths and commands ([e64a88e](https://github.com/battis/qui-cli/commit/e64a88e8a2c38fe485fa2527fe5c3953dce4b950))
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
15
25
|
|
|
26
|
+
- normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
|
|
16
27
|
|
|
17
28
|
## [5.0.2](https://github.com/battis/qui-cli/compare/qui-cli/5.0.1...qui-cli/5.0.2) (2025-11-12)
|
|
18
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/qui-cli",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Quickly build a CLI app",
|
|
5
5
|
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/qui-cli#readme",
|
|
6
6
|
"repository": {
|
|
@@ -17,39 +17,38 @@
|
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@qui-cli/colors": "3.2.
|
|
20
|
+
"@qui-cli/colors": "3.2.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@battis/typescript-tricks": "^0.7.
|
|
24
|
-
"@inquirer/prompts": "^
|
|
25
|
-
"@tsconfig/
|
|
23
|
+
"@battis/typescript-tricks": "^0.7.6",
|
|
24
|
+
"@inquirer/prompts": "^8.2.0",
|
|
25
|
+
"@tsconfig/node24": "^24.0.4",
|
|
26
26
|
"@types/is-valid-path": "^0.1.2",
|
|
27
|
-
"@types/node": "^24.10.
|
|
28
|
-
"@types/shelljs": "^0.8.17",
|
|
27
|
+
"@types/node": "^24.10.9",
|
|
29
28
|
"commit-and-tag-version": "^12.6.1",
|
|
30
|
-
"del-cli": "^
|
|
29
|
+
"del-cli": "^7.0.0",
|
|
31
30
|
"npm-run-all": "^4.1.5",
|
|
32
31
|
"tsx": "^4.21.0",
|
|
33
32
|
"typescript": "^5.9.3",
|
|
34
|
-
"@qui-cli/core": "5.0.
|
|
35
|
-
"@qui-cli/env": "5.0
|
|
36
|
-
"@qui-cli/log": "4.0.
|
|
37
|
-
"@qui-cli/
|
|
38
|
-
"@qui-cli/
|
|
39
|
-
"@qui-cli/
|
|
40
|
-
"@qui-cli/
|
|
41
|
-
"@qui-cli/
|
|
33
|
+
"@qui-cli/core": "5.0.3",
|
|
34
|
+
"@qui-cli/env": "5.1.0",
|
|
35
|
+
"@qui-cli/log": "4.0.3",
|
|
36
|
+
"@qui-cli/plugin": "4.1.0",
|
|
37
|
+
"@qui-cli/root": "3.1.0",
|
|
38
|
+
"@qui-cli/progress": "3.0.6",
|
|
39
|
+
"@qui-cli/shell": "3.1.2",
|
|
40
|
+
"@qui-cli/validators": "3.0.4"
|
|
42
41
|
},
|
|
43
42
|
"peerDependencies": {
|
|
44
|
-
"@inquirer/prompts": "
|
|
45
|
-
"@qui-cli/
|
|
46
|
-
"@qui-cli/
|
|
47
|
-
"@qui-cli/
|
|
48
|
-
"@qui-cli/plugin": "4.
|
|
49
|
-
"@qui-cli/progress": "3.0.
|
|
50
|
-
"@qui-cli/root": "3.0
|
|
51
|
-
"@qui-cli/shell": "3.1.
|
|
52
|
-
"@qui-cli/validators": "3.0.
|
|
43
|
+
"@inquirer/prompts": "8.x",
|
|
44
|
+
"@qui-cli/env": "5.1.0",
|
|
45
|
+
"@qui-cli/log": "4.0.3",
|
|
46
|
+
"@qui-cli/core": "5.0.3",
|
|
47
|
+
"@qui-cli/plugin": "4.1.0",
|
|
48
|
+
"@qui-cli/progress": "3.0.6",
|
|
49
|
+
"@qui-cli/root": "3.1.0",
|
|
50
|
+
"@qui-cli/shell": "3.1.2",
|
|
51
|
+
"@qui-cli/validators": "3.0.4"
|
|
53
52
|
},
|
|
54
53
|
"engines": {
|
|
55
54
|
"node": ">=12.17"
|
|
@@ -60,6 +59,6 @@
|
|
|
60
59
|
"build": "run-s build:*",
|
|
61
60
|
"build:clean": "run-s clean",
|
|
62
61
|
"build:compile": "tsc",
|
|
63
|
-
"
|
|
62
|
+
"version": "commit-and-tag-version"
|
|
64
63
|
}
|
|
65
64
|
}
|