@qui-cli/structured 2.0.5 → 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,33 +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.5](https://github.com/battis/qui-cli/compare/structured/2.0.4...structured/2.0.5) (2026-01-18)
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
8
+
9
+ - initialize Positionals options to correctly display plugin-required positionals ([fde874c](https://github.com/battis/qui-cli/commit/fde874ca39d9823892d49ff3009a9c2afece84eb))
6
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
- * compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
15
+ - compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
11
16
 
12
17
  ## [2.0.4](https://github.com/battis/qui-cli/compare/structured/2.0.3...structured/2.0.4) (2026-01-02)
13
18
 
14
-
15
19
  ### Bug Fixes
16
20
 
17
- * normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
21
+ - normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
18
22
 
19
23
  ## [2.0.3](https://github.com/battis/qui-cli/compare/structured/2.0.2...structured/2.0.3) (2026-01-02)
20
24
 
21
-
22
25
  ### Bug Fixes
23
26
 
24
- * 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))
25
28
 
26
29
  ## [2.0.2](https://github.com/battis/qui-cli/compare/structured/2.0.1...structured/2.0.2) (2026-01-02)
27
30
 
28
-
29
31
  ### Bug Fixes
30
32
 
31
- * 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))
32
34
 
33
35
  ## [2.0.1](https://github.com/battis/qui-cli/compare/structured/2.0.0...structured/2.0.1) (2025-11-07)
34
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.5",
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.3"
20
+ "change-case": "^5.4.4"
22
21
  },
23
22
  "devDependencies": {
24
23
  "@tsconfig/node24": "^24.0.4",
25
- "@types/node": "^24.10.9",
24
+ "@types/node": "^24.10.13",
26
25
  "commit-and-tag-version": "^12.6.1",
27
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.3",
31
- "@qui-cli/plugin": "4.1.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
  },
@@ -40,6 +38,6 @@
40
38
  "build": "run-s build:*",
41
39
  "build:clean": "run-s clean",
42
40
  "build:compile": "tsc",
43
- "version": "commit-and-tag-version"
41
+ "release": "commit-and-tag-version"
44
42
  }
45
43
  }