@astrojs/mdx 4.3.9 → 4.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { markdownConfigDefaults } from '@astrojs/markdown-remark';
2
- import type { AstroIntegration, ContainerRenderer } from 'astro';
2
+ import type { AstroIntegration, AstroRenderer } from 'astro';
3
3
  import type { Options as RemarkRehypeOptions } from 'remark-rehype';
4
4
  import type { PluggableList } from 'unified';
5
5
  import type { OptimizeOptions } from './rehype-optimize-static.js';
@@ -11,5 +11,5 @@ export type MdxOptions = Omit<typeof markdownConfigDefaults, 'remarkPlugins' | '
11
11
  remarkRehype: RemarkRehypeOptions;
12
12
  optimize: boolean | OptimizeOptions;
13
13
  };
14
- export declare function getContainerRenderer(): ContainerRenderer;
14
+ export declare function getContainerRenderer(): AstroRenderer;
15
15
  export default function mdx(partialMdxOptions?: Partial<MdxOptions>): AstroIntegration;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@astrojs/mdx",
3
3
  "description": "Add support for MDX pages in your Astro site",
4
- "version": "4.3.9",
4
+ "version": "4.3.10",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "author": "withastro",
@@ -62,7 +62,7 @@
62
62
  "shiki": "^3.12.0",
63
63
  "unified": "^11.0.5",
64
64
  "vite": "^6.4.1",
65
- "astro": "5.15.2",
65
+ "astro": "5.15.4",
66
66
  "astro-scripts": "0.0.14"
67
67
  },
68
68
  "engines": {