Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 28, 2023
1 parent 298db34 commit 1f9df2b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"remark-cli": "^11.0.0",
"remark-parse": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"remark-rehype": "^10.0.0",
"remark-rehype": "^11.0.0",
"remark-stringify": "^11.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
Expand Down
2 changes: 0 additions & 2 deletions packages/rehype-katex/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ test('rehype-katex', async function (t) {
String(
await unified()
.use(remarkParse)
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeKatex)
.use(rehypeStringify)
Expand All @@ -72,7 +71,6 @@ test('rehype-katex', async function (t) {
await unified()
.use(remarkParse)
.use(remarkMath)
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeKatex)
.use(rehypeStringify)
Expand Down
2 changes: 1 addition & 1 deletion packages/rehype-mathjax/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
],
"dependencies": {
"@types/hast": "^3.0.0",
"@types/mathjax": "^0.0.37",
"@types/mathjax": "^0.0.38",
"hast-util-from-dom": "^5.0.0",
"hast-util-to-text": "^4.0.0",
"jsdom": "^22.0.0",
Expand Down
2 changes: 0 additions & 2 deletions packages/rehype-mathjax/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ test('rehype-mathjax', async function (t) {
String(
await unified()
.use(remarkParse)
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeMathJaxSvg)
.use(rehypeStringify)
Expand All @@ -132,7 +131,6 @@ test('rehype-mathjax', async function (t) {
await unified()
.use(remarkParse)
.use(remarkMath)
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeMathJaxSvg)
.use(rehypeStringify)
Expand Down
2 changes: 0 additions & 2 deletions packages/remark-math/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ test('remarkMath', async function (t) {
const toHtml = unified()
.use(remarkParse)
.use(remarkMath)
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeStringify)

Expand Down Expand Up @@ -480,7 +479,6 @@ test('remarkMath', async function (t) {
await unified()
.use(remarkParse)
.use(remarkMath, {singleDollarTextMath: false})
// @ts-expect-error: to do: remove when `remark-rehype` is released.
.use(remarkRehype)
.use(rehypeStringify)
.process('Math $\\alpha$\n\n$$\\beta+\\gamma$$\n')
Expand Down

0 comments on commit 1f9df2b

Please sign in to comment.