diff options
author | 2023-03-07 19:07:44 +0000 | |
---|---|---|
committer | 2023-03-07 19:07:44 +0000 | |
commit | 05c5ef155f414d4939f84e1d1720a62763315423 (patch) | |
tree | 0ff2416cc9697c5922beb6bcd2ea7ad5b7769101 /packages/integrations/mdx/src/utils.ts | |
parent | fec583909ab62829dc0c1600e2387979365f2b94 (diff) | |
download | astro-05c5ef155f414d4939f84e1d1720a62763315423.tar.gz astro-05c5ef155f414d4939f84e1d1720a62763315423.tar.zst astro-05c5ef155f414d4939f84e1d1720a62763315423.zip |
[ci] format
Diffstat (limited to 'packages/integrations/mdx/src/utils.ts')
-rw-r--r-- | packages/integrations/mdx/src/utils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/mdx/src/utils.ts b/packages/integrations/mdx/src/utils.ts index a76186292..80f8c3e20 100644 --- a/packages/integrations/mdx/src/utils.ts +++ b/packages/integrations/mdx/src/utils.ts @@ -1,9 +1,9 @@ +import type { PluggableList } from '@mdx-js/mdx/lib/core.js'; import type { Options as AcornOpts } from 'acorn'; import { parse } from 'acorn'; import type { AstroConfig, SSRError } from 'astro'; -import { bold, yellow } from 'kleur/colors'; import matter from 'gray-matter'; -import type { PluggableList } from '@mdx-js/mdx/lib/core.js'; +import { bold, yellow } from 'kleur/colors'; import type { MdxjsEsm } from 'mdast-util-mdx'; function appendForwardSlash(path: string) { |