@qui-cli/structured 1.0.1 → 2.0.1
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 +22 -9
- package/package.json +10 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,28 +2,41 @@
|
|
|
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
|
+
## [2.0.1](https://github.com/battis/qui-cli/compare/structured/2.0.0...structured/2.0.1) (2025-11-07)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- adjust peer dependencies to current values ([966abc1](https://github.com/battis/qui-cli/commit/966abc192c68319d06b399ff3f0362032ab8d89a))
|
|
10
|
+
|
|
11
|
+
## [2.0.0](https://github.com/battis/qui-cli/compare/structured/1.0.1...structured/2.0.0) (2025-11-07)
|
|
12
|
+
|
|
13
|
+
### ⚠ BREAKING CHANGES
|
|
6
14
|
|
|
15
|
+
- **plugin@4.0.0** auto-document default arg values
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- **plugin@4.0.0** auto-document default arg values ([e01e157](https://github.com/battis/qui-cli/commit/e01e157f06a3a801628ca79366e3f0060be2322e))
|
|
20
|
+
|
|
21
|
+
## [1.0.1](https://github.com/battis/qui-cli/compare/structured/1.0.0...structured/1.0.1) (2025-08-04)
|
|
7
22
|
|
|
8
23
|
### Bug Fixes
|
|
9
24
|
|
|
10
|
-
|
|
25
|
+
- update lagging peer dependency specs ([30c0c27](https://github.com/battis/qui-cli/commit/30c0c279d4247a69a30efef8a7426442752cd9c0))
|
|
11
26
|
|
|
12
27
|
## [1.0.0](https://github.com/battis/qui-cli/compare/structured/0.1.5...structured/1.0.0) (2025-08-02)
|
|
13
28
|
|
|
14
|
-
|
|
15
29
|
### ⚠ BREAKING CHANGES
|
|
16
30
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
* rename @battis/qui-cli.structured --> @qui-cli/structured ([a0f29ce](https://github.com/battis/qui-cli/commit/a0f29ce176b8fab590f474f7198e33e9fd997ce6))
|
|
31
|
+
- rename @battis/qui-cli.structured --> @qui-cli/structured
|
|
20
32
|
|
|
33
|
+
- rename @battis/qui-cli.structured --> @qui-cli/structured ([a0f29ce](https://github.com/battis/qui-cli/commit/a0f29ce176b8fab590f474f7198e33e9fd997ce6))
|
|
21
34
|
|
|
22
35
|
### Bug Fixes
|
|
23
36
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
37
|
+
- update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
|
|
38
|
+
- update dependencies to renamed @qui-cli/core ([f834c5a](https://github.com/battis/qui-cli/commit/f834c5a475f908585f1e17865917a092516168a0))
|
|
39
|
+
- update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
|
|
27
40
|
|
|
28
41
|
## [0.1.5](https://github.com/battis/qui-cli/compare/structured/0.1.4...structured/0.1.5) (2025-08-01)
|
|
29
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/structured",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Build a structured @qui-cli command from directory contents",
|
|
5
5
|
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/structured#readme",
|
|
6
6
|
"repository": {
|
|
@@ -17,23 +17,22 @@
|
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"change-case": "^5.4.4"
|
|
20
|
+
"change-case": "^5.4.4",
|
|
21
|
+
"@qui-cli/colors": "3.1.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|
|
23
24
|
"@tsconfig/node20": "^20.1.6",
|
|
24
|
-
"@types/node": "^24.
|
|
25
|
-
"commit-and-tag-version": "^12.
|
|
25
|
+
"@types/node": "^24.10.0",
|
|
26
|
+
"commit-and-tag-version": "^12.6.0",
|
|
26
27
|
"del-cli": "^6.0.0",
|
|
27
28
|
"npm-run-all": "^4.1.5",
|
|
28
|
-
"typescript": "^5.9.
|
|
29
|
-
"@qui-cli/
|
|
30
|
-
"@qui-cli/
|
|
31
|
-
"@qui-cli/colors": "3.0.1"
|
|
29
|
+
"typescript": "^5.9.3",
|
|
30
|
+
"@qui-cli/core": "5.0.0",
|
|
31
|
+
"@qui-cli/plugin": "4.0.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@qui-cli/
|
|
35
|
-
"@qui-cli/
|
|
36
|
-
"@qui-cli/plugin": "3.x"
|
|
34
|
+
"@qui-cli/core": "5.x",
|
|
35
|
+
"@qui-cli/plugin": "4.x"
|
|
37
36
|
},
|
|
38
37
|
"target": "node",
|
|
39
38
|
"scripts": {
|