@qui-cli/structured 2.0.2 → 2.0.3

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.3](https://github.com/battis/qui-cli/compare/structured/2.0.2...structured/2.0.3) (2026-01-02)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * fix inverted logic ([25c7e97](https://github.com/battis/qui-cli/commit/25c7e97fc8204a84a7577c0b9cb99c219529ba34))
11
+
5
12
  ## [2.0.2](https://github.com/battis/qui-cli/compare/structured/2.0.1...structured/2.0.2) (2026-01-02)
6
13
 
7
14
 
package/dist/index.js CHANGED
@@ -16,8 +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
+ // TypeScript definitions are NOT commands
20
+ .filter((f) => !/\.\d\.ts$/.test(f))
21
21
  // source maps are not commands
22
22
  .filter((f) => !/\.map$/.test(f))
23
23
  // normalize to commandCase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/structured",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
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": {