Skip to content

Commit e1777bc

Browse files
committed
Update dev-dependencies
1 parent fd6a508 commit e1777bc

File tree

4 files changed

+228
-227
lines changed

4 files changed

+228
-227
lines changed

lib/handle/root.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export function root(node, _, state, info) {
1919
const hasPhrasing = node.children.some(function (d) {
2020
return phrasing(d)
2121
})
22-
const fn = hasPhrasing ? state.containerPhrasing : state.containerFlow
23-
return fn.call(state, node, info)
22+
23+
const container = hasPhrasing ? state.containerPhrasing : state.containerFlow
24+
return container.call(state, node, info)
2425
}

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
"zwitch": "^2.0.0"
4848
},
4949
"devDependencies": {
50-
"@types/node": "^20.0.0",
51-
"c8": "^8.0.0",
50+
"@types/node": "^22.0.0",
51+
"c8": "^10.0.0",
5252
"mdast-util-from-markdown": "^2.0.0",
5353
"prettier": "^3.0.0",
54-
"remark-cli": "^11.0.0",
55-
"remark-preset-wooorm": "^9.0.0",
54+
"remark-cli": "^12.0.0",
55+
"remark-preset-wooorm": "^10.0.0",
5656
"type-coverage": "^2.0.0",
5757
"typescript": "^5.0.0",
5858
"unist-util-remove-position": "^5.0.0",
59-
"xo": "^0.55.0"
59+
"xo": "^0.59.0"
6060
},
6161
"scripts": {
6262
"prepack": "npm run build && npm run format",

0 commit comments

Comments
 (0)