Compare commits

..
3 Commits
Author SHA1 Message Date
theoludwig 86308ce34c fix: update markdown-it to v14.3.0 2026-07-25 17:24:49 +08:00
theoludwig be2c1746c2 chore: lint:typescript 2026-07-03 16:51:56 +02:00
theoludwig 21fbd5f963 build(deps): update latest 2026-07-03 16:45:32 +02:00
4 changed files with 735 additions and 355 deletions
+3
View File
@@ -6,5 +6,8 @@
"browser": true, "browser": true,
"node": true, "node": true,
"shared-node-browser": true "shared-node-browser": true
},
"rules": {
"unicorn/prefer-number-coercion": "off"
} }
} }
+721 -345
View File
File diff suppressed because it is too large Load Diff
+9 -9
View File
@@ -36,20 +36,20 @@
"release": "semantic-release" "release": "semantic-release"
}, },
"dependencies": { "dependencies": {
"markdown-it": "14.2.0", "markdown-it": "14.3.0",
"mime": "4.1.0" "mime": "4.1.0"
}, },
"devDependencies": { "devDependencies": {
"@types/markdown-it": "14.1.2", "@types/markdown-it": "14.1.2",
"@types/node": "25.9.2", "@types/node": "26.1.1",
"eslint-config-conventions": "21.4.0", "eslint-config-conventions": "21.4.0",
"markdownlint": "0.40.0", "markdownlint": "0.41.1",
"markdownlint-cli2": "0.22.1", "markdownlint-cli2": "0.23.1",
"oxfmt": "0.54.0", "oxfmt": "0.60.0",
"oxlint": "1.69.0", "oxlint": "1.75.0",
"oxlint-tsgolint": "0.23.0", "oxlint-tsgolint": "7.0.2001",
"semantic-release": "25.0.3", "semantic-release": "25.0.8",
"typescript": "6.0.3" "typescript": "7.0.2"
}, },
"engines": { "engines": {
"node": ">=22.0.0" "node": ">=22.0.0"
+2 -1
View File
@@ -29,7 +29,8 @@ const relativeLinksRule = {
filterTokens(params, "inline", (token) => { filterTokens(params, "inline", (token) => {
const children = token.children ?? [] const children = token.children ?? []
for (const child of children) { for (const child of children) {
const { type, attrs, lineNumber } = child const { type, lineNumber } = child
const attrs = child.attrs ?? []
/** @type {string | undefined} */ /** @type {string | undefined} */
let hrefSrc let hrefSrc