@qui-cli/markdown 0.0.2 → 1.0.0
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 +12 -4
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,16 +2,24 @@
|
|
|
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
|
-
## [0.0
|
|
5
|
+
## [1.0.0](https://github.com/battis/qui-cli/compare/markdown/0.0.2...markdown/1.0.0) (2025-11-07)
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
- **plugin@4.0.0** auto-document default arg values
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- **plugin@4.0.0** auto-document default arg values ([e01e157](https://github.com/battis/qui-cli/commit/e01e157f06a3a801628ca79366e3f0060be2322e))
|
|
6
14
|
|
|
15
|
+
## [0.0.2](https://github.com/battis/qui-cli/compare/markdown/0.0.1...markdown/0.0.2) (2025-11-05)
|
|
7
16
|
|
|
8
17
|
### Bug Fixes
|
|
9
18
|
|
|
10
|
-
|
|
19
|
+
- create parent directory correctly ([1a27f9d](https://github.com/battis/qui-cli/commit/1a27f9d23c165fa8f5ad113c8f565cfc241e558f))
|
|
11
20
|
|
|
12
21
|
## 0.0.1 (2025-11-04)
|
|
13
22
|
|
|
14
|
-
|
|
15
23
|
### Features
|
|
16
24
|
|
|
17
|
-
|
|
25
|
+
- support scripting markdown documentation for commands ([03ee6d5](https://github.com/battis/qui-cli/commit/03ee6d55f86f6d7b45bd205896cb0fb6a21523b5))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/markdown",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "@qui-cli Plugin: Export usage as markdown",
|
|
5
5
|
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/markdown#readme",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"strip-ansi": "^7.1.2"
|
|
20
|
+
"strip-ansi": "^7.1.2",
|
|
21
|
+
"@qui-cli/colors": "3.1.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|
|
23
24
|
"@tsconfig/node20": "^20.1.6",
|
|
@@ -25,16 +26,14 @@
|
|
|
25
26
|
"commit-and-tag-version": "^12.6.0",
|
|
26
27
|
"del-cli": "^6.0.0",
|
|
27
28
|
"npm-run-all": "^4.1.5",
|
|
28
|
-
"typescript": "
|
|
29
|
-
"@qui-cli/
|
|
30
|
-
"@qui-cli/
|
|
31
|
-
"@qui-cli/plugin": "
|
|
32
|
-
"@qui-cli/root": "3.0.1"
|
|
29
|
+
"typescript": "^5.9.3",
|
|
30
|
+
"@qui-cli/core": "5.0.0",
|
|
31
|
+
"@qui-cli/root": "3.0.1",
|
|
32
|
+
"@qui-cli/plugin": "4.0.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@qui-cli/
|
|
36
|
-
"@qui-cli/
|
|
37
|
-
"@qui-cli/plugin": "3.x",
|
|
35
|
+
"@qui-cli/core": "5.x",
|
|
36
|
+
"@qui-cli/plugin": "4.x",
|
|
38
37
|
"@qui-cli/root": "3.x"
|
|
39
38
|
},
|
|
40
39
|
"target": "node",
|