@qui-cli/structured 2.0.2 → 2.0.4
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 +14 -0
- package/dist/index.js +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
|
|
11
|
+
|
|
12
|
+
## [2.0.3](https://github.com/battis/qui-cli/compare/structured/2.0.2...structured/2.0.3) (2026-01-02)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* fix inverted logic ([25c7e97](https://github.com/battis/qui-cli/commit/25c7e97fc8204a84a7577c0b9cb99c219529ba34))
|
|
18
|
+
|
|
5
19
|
## [2.0.2](https://github.com/battis/qui-cli/compare/structured/2.0.1...structured/2.0.2) (2026-01-02)
|
|
6
20
|
|
|
7
21
|
|
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
|
|
20
|
-
.filter((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.
|
|
3
|
+
"version": "2.0.4",
|
|
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": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"del-cli": "^6.0.0",
|
|
28
28
|
"npm-run-all": "^4.1.5",
|
|
29
29
|
"typescript": "^5.9.3",
|
|
30
|
-
"@qui-cli/
|
|
31
|
-
"@qui-cli/
|
|
30
|
+
"@qui-cli/core": "5.0.2",
|
|
31
|
+
"@qui-cli/plugin": "4.0.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@qui-cli/core": "
|
|
35
|
-
"@qui-cli/plugin": "
|
|
34
|
+
"@qui-cli/core": ">=4",
|
|
35
|
+
"@qui-cli/plugin": ">=3"
|
|
36
36
|
},
|
|
37
37
|
"target": "node",
|
|
38
38
|
"scripts": {
|