@versatiles/release-tool 2.7.4 → 2.7.5
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/dist/commands/markdown.js +0 -3
- package/package.json +16 -16
|
@@ -198,10 +198,7 @@ function extractTextFromMDAsHTML(node) {
|
|
|
198
198
|
case 'emphasis':
|
|
199
199
|
case 'strong':
|
|
200
200
|
case 'delete':
|
|
201
|
-
return node.children.map((child) => extractTextFromMDAsHTML(child)).join('');
|
|
202
|
-
// Nodes with children but need special handling
|
|
203
201
|
case 'list':
|
|
204
|
-
return node.children.map((child) => extractTextFromMDAsHTML(child)).join('');
|
|
205
202
|
case 'table':
|
|
206
203
|
return node.children.map((child) => extractTextFromMDAsHTML(child)).join('');
|
|
207
204
|
// Nodes with alt text
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versatiles/release-tool",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.5",
|
|
4
4
|
"description": "VersaTiles release and documentation tools",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vrt": "./dist/index.js"
|
|
@@ -41,34 +41,34 @@
|
|
|
41
41
|
"homepage": "https://github.com/versatiles-org/node-release-tool",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/js": "^10.0.1",
|
|
44
|
-
"@schemastore/package": "^
|
|
44
|
+
"@schemastore/package": "^1.0.2",
|
|
45
45
|
"@types/mdast": "^4.0.4",
|
|
46
|
-
"@types/node": "^25.
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
48
|
-
"@typescript-eslint/parser": "^8.
|
|
49
|
-
"@vitest/coverage-v8": "^4.
|
|
50
|
-
"eslint": "^10.0
|
|
46
|
+
"@types/node": "^25.5.0",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
48
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
49
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
50
|
+
"eslint": "^10.1.0",
|
|
51
51
|
"husky": "^9.1.7",
|
|
52
|
-
"lint-staged": "^16.
|
|
52
|
+
"lint-staged": "^16.4.0",
|
|
53
53
|
"prettier": "^3.8.1",
|
|
54
54
|
"tsx": "^4.21.0",
|
|
55
|
-
"typescript": "^
|
|
56
|
-
"typescript-eslint": "^8.
|
|
57
|
-
"vitest": "^4.
|
|
55
|
+
"typescript": "^6.0.2",
|
|
56
|
+
"typescript-eslint": "^8.58.0",
|
|
57
|
+
"vitest": "^4.1.2"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@inquirer/select": "^5.1.
|
|
60
|
+
"@inquirer/select": "^5.1.2",
|
|
61
61
|
"commander": "^14.0.3",
|
|
62
|
-
"dependency-cruiser": "^17.3.
|
|
62
|
+
"dependency-cruiser": "^17.3.10",
|
|
63
63
|
"mdast-util-to-markdown": "^2.1.2",
|
|
64
|
-
"npm-check-updates": "^
|
|
64
|
+
"npm-check-updates": "^20.0.0",
|
|
65
65
|
"remark": "^15.0.1",
|
|
66
66
|
"remark-gfm": "^4.0.1",
|
|
67
67
|
"remark-stringify": "^11.0.0",
|
|
68
|
-
"typedoc": "^0.28.
|
|
68
|
+
"typedoc": "^0.28.18",
|
|
69
69
|
"typedoc-github-theme": "^0.4.0",
|
|
70
70
|
"typedoc-github-wiki-theme": "^2.1.0",
|
|
71
|
-
"typedoc-plugin-markdown": "^4.
|
|
71
|
+
"typedoc-plugin-markdown": "^4.11.0"
|
|
72
72
|
},
|
|
73
73
|
"lint-staged": {
|
|
74
74
|
"*.{ts,js,json,md,yml,yaml}": "prettier --write",
|