Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Aug 30, 2023
1 parent aba138b commit 6db82dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"property-information": "^6.0.0",
"rehype": "^13.0.0",
"rehype-cli": "^12.0.0",
"rehype-format": "^4.0.0",
"rehype-format": "^5.0.0",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"remark-cli": "^11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion script/pipeline-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ function generateReadmePluggableExampleSection(state, plugin, example, file) {
.data('settings', options.processor || {fragment: true})
// @ts-expect-error: `undefined` is fine.
.use(plugin, options.plugin || undefined)
// @ts-expect-error: `undefined` is fine to pass.
// @ts-expect-error: `undefined` is fine.
.use(options.format ? rehypeFormat : undefined)
.processSync(exampleValue)
.toString()
Expand Down
2 changes: 1 addition & 1 deletion script/pipeline-root.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function createTable(data) {
h('tfoot', h('tr', foot))
])

// @ts-expect-error: fine. Will be OK after `rehype-format` is released.
// @ts-expect-error: elements are fine.
rehypeFormat()(tree)

return {type: 'html', value: toHtml(tree)}
Expand Down

0 comments on commit 6db82dd

Please sign in to comment.