@qui-cli/structured 2.0.1 → 2.0.2

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,6 +2,13 @@
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.2](https://github.com/battis/qui-cli/compare/structured/2.0.1...structured/2.0.2) (2026-01-02)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * don't include TypeScript definitions as commands ([af532ca](https://github.com/battis/qui-cli/commit/af532caaf6b6d0e48d9358a06d0db9ad12df30f0))
11
+
5
12
  ## [2.0.1](https://github.com/battis/qui-cli/compare/structured/2.0.0...structured/2.0.1) (2025-11-07)
6
13
 
7
14
  ### Bug Fixes
package/dist/index.js CHANGED
@@ -16,6 +16,8 @@ export async function build({ fileName, commandName, commandDirPath, commandCase
16
16
  .filter((f) => !/^\./.test(f))
17
17
  // this file isn't a command
18
18
  .filter((f) => f !== path.basename(fileName))
19
+ // TypeScript definitions aren't commands
20
+ .filter((f) => /\.\d\.ts$/.test(f))
19
21
  // source maps are not commands
20
22
  .filter((f) => !/\.map$/.test(f))
21
23
  // normalize to commandCase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/structured",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
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": {
@@ -18,17 +18,17 @@
18
18
  "types": "./dist/index.d.ts",
19
19
  "dependencies": {
20
20
  "change-case": "^5.4.4",
21
- "@qui-cli/colors": "3.1.0"
21
+ "@qui-cli/colors": "3.2.1"
22
22
  },
23
23
  "devDependencies": {
24
- "@tsconfig/node20": "^20.1.6",
25
- "@types/node": "^24.10.0",
26
- "commit-and-tag-version": "^12.6.0",
24
+ "@tsconfig/node20": "^20.1.8",
25
+ "@types/node": "^24.10.4",
26
+ "commit-and-tag-version": "^12.6.1",
27
27
  "del-cli": "^6.0.0",
28
28
  "npm-run-all": "^4.1.5",
29
29
  "typescript": "^5.9.3",
30
- "@qui-cli/core": "5.0.0",
31
- "@qui-cli/plugin": "4.0.0"
30
+ "@qui-cli/plugin": "4.0.0",
31
+ "@qui-cli/core": "5.0.1"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@qui-cli/core": "5.x",