@qui-cli/markdown 1.2.1 → 1.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -10
  2. package/package.json +5 -8
package/CHANGELOG.md CHANGED
@@ -2,40 +2,39 @@
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
- ## [1.2.1](https://github.com/battis/qui-cli/compare/markdown/1.2.0...markdown/1.2.1) (2026-02-23)
5
+ ## [1.2.2](https://github.com/battis/qui-cli/compare/markdown/1.2.1...markdown/1.2.2) (2026-03-10)
6
+
7
+ Update README
6
8
 
9
+ ## [1.2.1](https://github.com/battis/qui-cli/compare/markdown/1.2.0...markdown/1.2.1) (2026-02-23)
7
10
 
8
11
  ### Bug Fixes
9
12
 
10
- * bold keywords ([2726a0a](https://github.com/battis/qui-cli/commit/2726a0a5f638db9a19217a63834d42c944c3ce59))
13
+ - bold keywords ([2726a0a](https://github.com/battis/qui-cli/commit/2726a0a5f638db9a19217a63834d42c944c3ce59))
11
14
 
12
15
  ## [1.2.0](https://github.com/battis/qui-cli/compare/markdown/1.1.2...markdown/1.2.0) (2026-02-22)
13
16
 
14
-
15
17
  ### Features
16
18
 
17
- * convert ANSI coloring to markdown ([5828d89](https://github.com/battis/qui-cli/commit/5828d894a37950d89f16003bf2b815543cfa9113))
19
+ - convert ANSI coloring to markdown ([5828d89](https://github.com/battis/qui-cli/commit/5828d894a37950d89f16003bf2b815543cfa9113))
18
20
 
19
21
  ## [1.1.2](https://github.com/battis/qui-cli/compare/markdown/1.1.1...markdown/1.1.2) (2026-01-18)
20
22
 
21
-
22
23
  ### Bug Fixes
23
24
 
24
- * compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
25
+ - compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
25
26
 
26
27
  ## [1.1.1](https://github.com/battis/qui-cli/compare/markdown/1.1.0...markdown/1.1.1) (2026-01-02)
27
28
 
28
-
29
29
  ### Bug Fixes
30
30
 
31
- * normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
31
+ - normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
32
32
 
33
33
  ## [1.1.0](https://github.com/battis/qui-cli/compare/markdown/1.0.1...markdown/1.1.0) (2025-11-12)
34
34
 
35
-
36
35
  ### Features
37
36
 
38
- * adjust heading level for Markdown prettiness ([88a651e](https://github.com/battis/qui-cli/commit/88a651e91a47b1b1b4814676c436c4845910c21a))
37
+ - adjust heading level for Markdown prettiness ([88a651e](https://github.com/battis/qui-cli/commit/88a651e91a47b1b1b4814676c436c4845910c21a))
39
38
 
40
39
  ## [1.0.1](https://github.com/battis/qui-cli/compare/markdown/1.0.0...markdown/1.0.1) (2025-11-07)
41
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/markdown",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
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,8 +17,7 @@
17
17
  "main": "./dist/index.js",
18
18
  "types": "./dist/index.d.ts",
19
19
  "dependencies": {
20
- "strip-ansi": "^7.1.2",
21
- "@qui-cli/colors": "3.2.3"
20
+ "strip-ansi": "^7.1.2"
22
21
  },
23
22
  "devDependencies": {
24
23
  "@tsconfig/node24": "^24.0.4",
@@ -26,12 +25,10 @@
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/plugin": "4.1.0",
31
- "@qui-cli/core": "6.0.3",
32
- "@qui-cli/root": "3.1.0"
28
+ "typescript": "^5.9.3"
33
29
  },
34
30
  "peerDependencies": {
31
+ "@qui-cli/colors": ">=3.2",
35
32
  "@qui-cli/core": ">=4",
36
33
  "@qui-cli/plugin": ">=3",
37
34
  "@qui-cli/root": ">=3"
@@ -42,6 +39,6 @@
42
39
  "build": "run-s build:*",
43
40
  "build:clean": "run-s clean",
44
41
  "build:compile": "tsc",
45
- "version": "commit-and-tag-version"
42
+ "release": "commit-and-tag-version"
46
43
  }
47
44
  }