@qui-cli/structured 1.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -7
  2. package/package.json +10 -11
package/CHANGELOG.md CHANGED
@@ -2,21 +2,35 @@
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
- ## [1.0.0](https://github.com/battis/qui-cli/compare/structured/0.1.5...structured/1.0.0) (2025-08-02)
6
-
5
+ ## [2.0.0](https://github.com/battis/qui-cli/compare/structured/1.0.1...structured/2.0.0) (2025-11-07)
7
6
 
8
7
  ### ⚠ BREAKING CHANGES
9
8
 
10
- * rename @battis/qui-cli.structured --> @qui-cli/structured
9
+ - **plugin@4.0.0** auto-document default arg values
10
+
11
+ ### Features
12
+
13
+ - **plugin@4.0.0** auto-document default arg values ([e01e157](https://github.com/battis/qui-cli/commit/e01e157f06a3a801628ca79366e3f0060be2322e))
14
+
15
+ ## [1.0.1](https://github.com/battis/qui-cli/compare/structured/1.0.0...structured/1.0.1) (2025-08-04)
16
+
17
+ ### Bug Fixes
18
+
19
+ - update lagging peer dependency specs ([30c0c27](https://github.com/battis/qui-cli/commit/30c0c279d4247a69a30efef8a7426442752cd9c0))
20
+
21
+ ## [1.0.0](https://github.com/battis/qui-cli/compare/structured/0.1.5...structured/1.0.0) (2025-08-02)
22
+
23
+ ### ⚠ BREAKING CHANGES
11
24
 
12
- * rename @battis/qui-cli.structured --> @qui-cli/structured ([a0f29ce](https://github.com/battis/qui-cli/commit/a0f29ce176b8fab590f474f7198e33e9fd997ce6))
25
+ - rename @battis/qui-cli.structured --> @qui-cli/structured
13
26
 
27
+ - rename @battis/qui-cli.structured --> @qui-cli/structured ([a0f29ce](https://github.com/battis/qui-cli/commit/a0f29ce176b8fab590f474f7198e33e9fd997ce6))
14
28
 
15
29
  ### Bug Fixes
16
30
 
17
- * update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
18
- * update dependencies to renamed @qui-cli/core ([f834c5a](https://github.com/battis/qui-cli/commit/f834c5a475f908585f1e17865917a092516168a0))
19
- * update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
31
+ - update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
32
+ - update dependencies to renamed @qui-cli/core ([f834c5a](https://github.com/battis/qui-cli/commit/f834c5a475f908585f1e17865917a092516168a0))
33
+ - update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
20
34
 
21
35
  ## [0.1.5](https://github.com/battis/qui-cli/compare/structured/0.1.4...structured/0.1.5) (2025-08-01)
22
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/structured",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
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.1.0",
25
- "commit-and-tag-version": "^12.5.2",
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.2",
29
- "@qui-cli/colors": "3.0.0",
30
- "@qui-cli/core": "4.0.0",
31
- "@qui-cli/plugin": "3.0.0"
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/colors": "3.0.0",
35
- "@qui-cli/core": "4.0.0",
36
- "@qui-cli/plugin": "3.0.0"
34
+ "@qui-cli/core": "5.x",
35
+ "@qui-cli/plugin": "4.x"
37
36
  },
38
37
  "target": "node",
39
38
  "scripts": {