@qui-cli/structured 2.0.4 → 2.0.6

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 CHANGED
@@ -2,26 +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
- ## [2.0.4](https://github.com/battis/qui-cli/compare/structured/2.0.3...structured/2.0.4) (2026-01-02)
5
+ ## [2.0.6](https://github.com/battis/qui-cli/compare/structured/2.0.5...structured/2.0.6) (2026-03-10)
6
+
7
+ ### Bug Fixes
6
8
 
9
+ - initialize Positionals options to correctly display plugin-required positionals ([fde874c](https://github.com/battis/qui-cli/commit/fde874ca39d9823892d49ff3009a9c2afece84eb))
10
+
11
+ ## [2.0.5](https://github.com/battis/qui-cli/compare/structured/2.0.4...structured/2.0.5) (2026-01-18)
7
12
 
8
13
  ### Bug Fixes
9
14
 
10
- * normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
15
+ - compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
11
16
 
12
- ## [2.0.3](https://github.com/battis/qui-cli/compare/structured/2.0.2...structured/2.0.3) (2026-01-02)
17
+ ## [2.0.4](https://github.com/battis/qui-cli/compare/structured/2.0.3...structured/2.0.4) (2026-01-02)
13
18
 
19
+ ### Bug Fixes
20
+
21
+ - normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
22
+
23
+ ## [2.0.3](https://github.com/battis/qui-cli/compare/structured/2.0.2...structured/2.0.3) (2026-01-02)
14
24
 
15
25
  ### Bug Fixes
16
26
 
17
- * fix inverted logic ([25c7e97](https://github.com/battis/qui-cli/commit/25c7e97fc8204a84a7577c0b9cb99c219529ba34))
27
+ - fix inverted logic ([25c7e97](https://github.com/battis/qui-cli/commit/25c7e97fc8204a84a7577c0b9cb99c219529ba34))
18
28
 
19
29
  ## [2.0.2](https://github.com/battis/qui-cli/compare/structured/2.0.1...structured/2.0.2) (2026-01-02)
20
30
 
21
-
22
31
  ### Bug Fixes
23
32
 
24
- * don't include TypeScript definitions as commands ([af532ca](https://github.com/battis/qui-cli/commit/af532caaf6b6d0e48d9358a06d0db9ad12df30f0))
33
+ - don't include TypeScript definitions as commands ([af532ca](https://github.com/battis/qui-cli/commit/af532caaf6b6d0e48d9358a06d0db9ad12df30f0))
25
34
 
26
35
  ## [2.0.1](https://github.com/battis/qui-cli/compare/structured/2.0.0...structured/2.0.1) (2025-11-07)
27
36
 
package/dist/index.js CHANGED
@@ -60,6 +60,6 @@ export async function build({ fileName, commandName, commandDirPath, commandCase
60
60
  .map((command) => Colors.command(command.name))
61
61
  .join(', ')}`);
62
62
  }
63
- console.log(JackSpeak.jack().usage());
63
+ process.stdout.write(JackSpeak.jack().usage());
64
64
  }
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/structured",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
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,20 +17,18 @@
17
17
  "main": "./dist/index.js",
18
18
  "types": "./dist/index.d.ts",
19
19
  "dependencies": {
20
- "change-case": "^5.4.4",
21
- "@qui-cli/colors": "3.2.1"
20
+ "change-case": "^5.4.4"
22
21
  },
23
22
  "devDependencies": {
24
- "@tsconfig/node20": "^20.1.8",
25
- "@types/node": "^24.10.4",
23
+ "@tsconfig/node24": "^24.0.4",
24
+ "@types/node": "^24.10.13",
26
25
  "commit-and-tag-version": "^12.6.1",
27
- "del-cli": "^6.0.0",
26
+ "del-cli": "^7.0.0",
28
27
  "npm-run-all": "^4.1.5",
29
- "typescript": "^5.9.3",
30
- "@qui-cli/core": "5.0.2",
31
- "@qui-cli/plugin": "4.0.0"
28
+ "typescript": "^5.9.3"
32
29
  },
33
30
  "peerDependencies": {
31
+ "@qui-cli/colors": ">=3.2",
34
32
  "@qui-cli/core": ">=4",
35
33
  "@qui-cli/plugin": ">=3"
36
34
  },