@qui-cli/markdown 1.2.0 → 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.
package/CHANGELOG.md CHANGED
@@ -2,33 +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.0](https://github.com/battis/qui-cli/compare/markdown/1.1.2...markdown/1.2.0) (2026-02-22)
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
8
+
9
+ ## [1.2.1](https://github.com/battis/qui-cli/compare/markdown/1.2.0...markdown/1.2.1) (2026-02-23)
10
+
11
+ ### Bug Fixes
6
12
 
13
+ - bold keywords ([2726a0a](https://github.com/battis/qui-cli/commit/2726a0a5f638db9a19217a63834d42c944c3ce59))
14
+
15
+ ## [1.2.0](https://github.com/battis/qui-cli/compare/markdown/1.1.2...markdown/1.2.0) (2026-02-22)
7
16
 
8
17
  ### Features
9
18
 
10
- * 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))
11
20
 
12
21
  ## [1.1.2](https://github.com/battis/qui-cli/compare/markdown/1.1.1...markdown/1.1.2) (2026-01-18)
13
22
 
14
-
15
23
  ### Bug Fixes
16
24
 
17
- * 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))
18
26
 
19
27
  ## [1.1.1](https://github.com/battis/qui-cli/compare/markdown/1.1.0...markdown/1.1.1) (2026-01-02)
20
28
 
21
-
22
29
  ### Bug Fixes
23
30
 
24
- * 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))
25
32
 
26
33
  ## [1.1.0](https://github.com/battis/qui-cli/compare/markdown/1.0.1...markdown/1.1.0) (2025-11-12)
27
34
 
28
-
29
35
  ### Features
30
36
 
31
- * 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))
32
38
 
33
39
  ## [1.0.1](https://github.com/battis/qui-cli/compare/markdown/1.0.0...markdown/1.0.1) (2025-11-07)
34
40
 
package/dist/Markdown.js CHANGED
@@ -14,7 +14,7 @@ const config = {
14
14
  overwrite: false,
15
15
  style: {
16
16
  value: ['`', '`'],
17
- keyword: ['*', '*']
17
+ keyword: ['**', '**']
18
18
  }
19
19
  };
20
20
  const placeholder = '@';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/markdown",
3
- "version": "1.2.0",
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/core": "6.0.3",
31
- "@qui-cli/root": "3.1.0",
32
- "@qui-cli/plugin": "4.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
  }