summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx')
-rw-r--r--packages/integrations/mdx/package.json8
-rw-r--r--packages/integrations/mdx/test/mdx-plugins.test.js4
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index 43d735f13..0ef90280c 100644
--- a/packages/integrations/mdx/package.json
+++ b/packages/integrations/mdx/package.json
@@ -35,7 +35,7 @@
"dependencies": {
"@astrojs/markdown-remark": "workspace:*",
"@mdx-js/mdx": "^3.0.1",
- "acorn": "^8.12.0",
+ "acorn": "^8.12.1",
"es-module-lexer": "^1.5.4",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
@@ -44,10 +44,10 @@
"kleur": "^4.1.5",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
- "remark-smartypants": "^3.0.1",
+ "remark-smartypants": "^3.0.2",
"source-map": "^0.7.4",
"unist-util-visit": "^5.0.0",
- "vfile": "^6.0.1"
+ "vfile": "^6.0.2"
},
"peerDependencies": {
"astro": "^4.8.0"
@@ -72,7 +72,7 @@
"remark-shiki-twoslash": "^3.1.3",
"remark-toc": "^9.0.0",
"unified": "^11.0.5",
- "vite": "^5.3.2"
+ "vite": "^5.3.4"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
diff --git a/packages/integrations/mdx/test/mdx-plugins.test.js b/packages/integrations/mdx/test/mdx-plugins.test.js
index 6bc8e096c..124ec52c1 100644
--- a/packages/integrations/mdx/test/mdx-plugins.test.js
+++ b/packages/integrations/mdx/test/mdx-plugins.test.js
@@ -47,7 +47,7 @@ describe('MDX plugins', () => {
const quote = selectSmartypantsQuote(document);
assert.notEqual(quote, null);
- assert.equal(quote.textContent.includes('”Smartypants” is — awesome'), true);
+ assert.equal(quote.textContent.includes('“Smartypants” is — awesome'), true);
});
it('supports custom rehype plugins', async () => {
@@ -198,7 +198,7 @@ describe('MDX plugins', () => {
);
} else {
assert.equal(
- quote.textContent.includes('”Smartypants” is — awesome'),
+ quote.textContent.includes('“Smartypants” is — awesome'),
true,
'Respects `markdown.smartypants` unexpectedly.'
);