diff options
author | 2023-04-13 11:09:19 -0700 | |
---|---|---|
committer | 2023-04-13 14:09:19 -0400 | |
commit | 0f4c00575024b6ad20cfcdd1295113b72a4dfffc (patch) | |
tree | ada66b4c3312d56652d6c9f2b0dfb50cef150882 /packages/markdown/remark/src | |
parent | 500ee802ac022aca6020ae1c5f28f59e024b6e40 (diff) | |
download | astro-0f4c00575024b6ad20cfcdd1295113b72a4dfffc.tar.gz astro-0f4c00575024b6ad20cfcdd1295113b72a4dfffc.tar.zst astro-0f4c00575024b6ad20cfcdd1295113b72a4dfffc.zip |
[ci] update lockfile (#6837)
* [ci] update lockfile
* Fix type errors
* Fix zod version
* updated lockfile
* fix tests
---------
Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com>
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
Diffstat (limited to 'packages/markdown/remark/src')
-rw-r--r-- | packages/markdown/remark/src/frontmatter-injection.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/markdown/remark/src/frontmatter-injection.ts b/packages/markdown/remark/src/frontmatter-injection.ts index 921d01297..db1a2b704 100644 --- a/packages/markdown/remark/src/frontmatter-injection.ts +++ b/packages/markdown/remark/src/frontmatter-injection.ts @@ -1,4 +1,4 @@ -import type { Data, VFile } from 'vfile'; +import type { VFileData as Data, VFile } from 'vfile'; import type { MarkdownAstroData } from './types.js'; function isValidAstroData(obj: unknown): obj is MarkdownAstroData { |