diff options
author | 2023-07-24 20:47:07 +0200 | |
---|---|---|
committer | 2023-08-08 11:01:33 +0100 | |
commit | d0679a666f37da0fca396d42b9b32bbb25d29312 (patch) | |
tree | c44e6b986d5a240c5c82611f76e1a8fdc89e981e /packages/integrations/mdx/src/remark-images-to-component.ts | |
parent | 4d160fa1e227cfcdb4789563574fc67ac24cf243 (diff) | |
download | astro-d0679a666f37da0fca396d42b9b32bbb25d29312.tar.gz astro-d0679a666f37da0fca396d42b9b32bbb25d29312.tar.zst astro-d0679a666f37da0fca396d42b9b32bbb25d29312.zip |
Remove support for Node 16 (#7780)
Diffstat (limited to 'packages/integrations/mdx/src/remark-images-to-component.ts')
-rw-r--r-- | packages/integrations/mdx/src/remark-images-to-component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/mdx/src/remark-images-to-component.ts b/packages/integrations/mdx/src/remark-images-to-component.ts index 8a3166f49..bb9657f42 100644 --- a/packages/integrations/mdx/src/remark-images-to-component.ts +++ b/packages/integrations/mdx/src/remark-images-to-component.ts @@ -1,5 +1,5 @@ import type { MarkdownVFile } from '@astrojs/markdown-remark'; -import { type Image, type Parent } from 'mdast'; +import type { Image, Parent } from 'mdast'; import type { MdxJsxFlowElement, MdxjsEsm } from 'mdast-util-mdx'; import { visit } from 'unist-util-visit'; import { jsToTreeNode } from './utils.js'; |