[ci] release (#5645)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Fred K. Bot 2022-12-27 08:52:24 -08:00 committed by GitHub
parent 87a0d8bf10
commit 640de3c26f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 157 additions and 156 deletions

View file

@ -1,27 +0,0 @@
---
'@astrojs/mdx': minor
---
Run heading ID injection after user plugins
⚠️ BREAKING CHANGE ⚠️
If you are using a rehype plugin that depends on heading IDs injected by Astro, the IDs will no longer be available when your plugin runs by default.
To inject IDs before your plugins run, import and add the `rehypeHeadingIds` plugin to your `rehypePlugins` config:
```diff
// astro.config.mjs
+ import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import mdx from '@astrojs/mdx';
export default {
integrations: [mdx()],
markdown: {
rehypePlugins: [
+ rehypeHeadingIds,
otherPluginThatReliesOnHeadingIDs,
],
},
}
```

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Remove stray `console.log` from content collections error message

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Use acorn to postprocess Astro globs

View file

@ -1,5 +0,0 @@
---
'@astrojs/mdx': patch
---
Chore: remove verbose "Now interiting Markdown plugins..." logs

View file

@ -1,5 +0,0 @@
---
'astro': minor
---
Add `astro sync` CLI command for type generation

View file

@ -1,7 +0,0 @@
---
'astro': patch
'@astrojs/mdx': patch
'@astrojs/markdown-remark': patch
---
Prevent relative image paths in `src/content/`

View file

@ -1,5 +0,0 @@
---
'@astrojs/vercel': minor
---
Ignore warnings when traced file fails to parse

View file

@ -1,5 +0,0 @@
---
'@astrojs/rss': major
---
Filter out draft in RSS generation

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix code generation quotes handling

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add `server.headers` typing

View file

@ -1,7 +0,0 @@
---
'@astrojs/markdown-remark': minor
---
Refactor and export `rehypeHeadingIds` plugin
The `rehypeHeadingIds` plugin injects IDs for all headings in a Markdown document and can now also handle MDX inputs if needed. You can import and use this plugin if you need heading IDs to be injected _before_ other rehype plugins run.

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"@astrojs/mdx": "^0.13.0",
"@astrojs/rss": "^1.2.1",
"astro": "^1.8.0",
"@astrojs/mdx": "^0.14.0",
"@astrojs/rss": "^2.0.0",
"@astrojs/sitemap": "^1.0.0"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
},
"peerDependencies": {
"astro": "^1.7.2"

View file

@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
},
"devDependencies": {
"@astrojs/deno": "^3.0.0"

View file

@ -12,7 +12,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"alpinejs": "^3.10.2",
"@astrojs/alpinejs": "^0.1.2",
"@types/alpinejs": "^3.7.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"lit": "^2.2.5",
"@astrojs/lit": "^1.0.0",
"@webcomponents/template-shadowroot": "^0.1.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"preact": "^10.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"@preact/signals": "^1.1.0"

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^1.2.2",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"solid-js": "^1.4.3",
"@astrojs/solid-js": "^1.2.3"
}

View file

@ -13,6 +13,6 @@
"dependencies": {
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"vue": "^3.2.37",
"@astrojs/vue": "^1.2.2"
}

View file

@ -13,6 +13,6 @@
},
"dependencies": {
"@astrojs/node": "^4.0.0",
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
},
"peerDependencies": {
"astro": "^1.7.2"

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -12,7 +12,7 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"svelte": "^3.48.0",
"@astrojs/svelte": "^1.0.2",
"@astrojs/node": "^4.0.0",

View file

@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"@astrojs/mdx": "^0.13.0",
"astro": "^1.8.0",
"@astrojs/mdx": "^0.14.0",
"@astrojs/sitemap": "^1.0.0"
}
}

View file

@ -11,8 +11,8 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"@astrojs/markdown-remark": "^1.1.3",
"astro": "^1.8.0",
"@astrojs/markdown-remark": "^1.2.0",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2"
"astro": "^1.8.0"
}
}

View file

@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"preact": "^10.6.5",
"@astrojs/preact": "^1.2.0",
"@astrojs/mdx": "^0.13.0"
"@astrojs/mdx": "^0.14.0"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"preact": "^10.7.3",
"@astrojs/preact": "^1.2.0",
"nanostores": "^0.5.12",

View file

@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^0.13.0",
"@astrojs/mdx": "^0.14.0",
"@astrojs/tailwind": "^2.1.3",
"@types/canvas-confetti": "^1.4.3",
"astro": "^1.7.2",
"astro": "^1.8.0",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}

View file

@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
"astro": "^1.7.2",
"astro": "^1.8.0",
"vitest": "^0.20.3"
}
}

View file

@ -1,5 +1,11 @@
# @astrojs/rss
## 2.0.0
### Major Changes
- [#5612](https://github.com/withastro/astro/pull/5612) [`68c20be66`](https://github.com/withastro/astro/commit/68c20be66b197e6c525cd292823a3a728f238547) Thanks [@equt](https://github.com/equt)! - Filter out draft in RSS generation
## 1.2.1
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/rss",
"description": "Add RSS feeds to your Astro projects",
"version": "1.2.1",
"version": "2.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,26 @@
# astro
## 1.8.0
### Minor Changes
- [#5647](https://github.com/withastro/astro/pull/5647) [`d72da5290`](https://github.com/withastro/astro/commit/d72da529075ccbcfd342bf2308df0e5ce59b1e3f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add `astro sync` CLI command for type generation
### Patch Changes
- [#5668](https://github.com/withastro/astro/pull/5668) [`9674cf56c`](https://github.com/withastro/astro/commit/9674cf56c561af8f13def0266b0539507a80000d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Remove stray `console.log` from content collections error message
- [#5652](https://github.com/withastro/astro/pull/5652) [`0b5098758`](https://github.com/withastro/astro/commit/0b50987584120e0c0e549f9ff838dc8879dbfa30) Thanks [@bluwy](https://github.com/bluwy)! - Use acorn to postprocess Astro globs
- [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/`
- [#5678](https://github.com/withastro/astro/pull/5678) [`f8f576829`](https://github.com/withastro/astro/commit/f8f57682948a76cad81eef579235ee059578fe91) Thanks [@bluwy](https://github.com/bluwy)! - Fix code generation quotes handling
- [#5635](https://github.com/withastro/astro/pull/5635) [`376f67011`](https://github.com/withastro/astro/commit/376f67011d220de3bf05d3f39779a708992fffd7) Thanks [@SegaraRai](https://github.com/SegaraRai)! - Add `server.headers` typing
- Updated dependencies [[`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241), [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff)]:
- @astrojs/markdown-remark@1.2.0
## 1.7.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "1.7.2",
"version": "1.8.0",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@ -110,7 +110,7 @@
"dependencies": {
"@astrojs/compiler": "^0.31.0",
"@astrojs/language-server": "^0.28.3",
"@astrojs/markdown-remark": "^1.1.3",
"@astrojs/markdown-remark": "^1.2.0",
"@astrojs/telemetry": "^1.0.1",
"@astrojs/webapi": "^1.1.1",
"@babel/core": "^7.18.2",

View file

@ -1,5 +1,42 @@
# @astrojs/mdx
## 0.14.0
### Minor Changes
- [#5654](https://github.com/withastro/astro/pull/5654) [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff) Thanks [@delucis](https://github.com/delucis)! - Run heading ID injection after user plugins
⚠️ BREAKING CHANGE ⚠️
If you are using a rehype plugin that depends on heading IDs injected by Astro, the IDs will no longer be available when your plugin runs by default.
To inject IDs before your plugins run, import and add the `rehypeHeadingIds` plugin to your `rehypePlugins` config:
```diff
// astro.config.mjs
+ import { rehypeHeadingIds } from '@astrojs/markdown-remark';
import mdx from '@astrojs/mdx';
export default {
integrations: [mdx()],
markdown: {
rehypePlugins: [
+ rehypeHeadingIds,
otherPluginThatReliesOnHeadingIDs,
],
},
}
```
### Patch Changes
- [#5667](https://github.com/withastro/astro/pull/5667) [`a5ba4af79`](https://github.com/withastro/astro/commit/a5ba4af79930145f4edf66d45cd40ddad045cc86) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Chore: remove verbose "Now interiting Markdown plugins..." logs
- [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/`
- Updated dependencies [[`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241), [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff)]:
- @astrojs/markdown-remark@1.2.0
## 0.13.0
### Minor Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Use MDX within Astro",
"version": "0.13.0",
"version": "0.14.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -30,7 +30,7 @@
"test:match": "mocha --timeout 20000 -g"
},
"dependencies": {
"@astrojs/markdown-remark": "^1.1.3",
"@astrojs/markdown-remark": "^1.2.0",
"@astrojs/prism": "^1.0.2",
"@mdx-js/mdx": "^2.1.2",
"@mdx-js/rollup": "^2.1.1",

View file

@ -1,5 +1,11 @@
# @astrojs/vercel
## 2.4.0
### Minor Changes
- [#5638](https://github.com/withastro/astro/pull/5638) [`a467139e1`](https://github.com/withastro/astro/commit/a467139e169ad2eb7931e03004f1d658f7362e59) Thanks [@andreademasi](https://github.com/andreademasi)! - Ignore warnings when traced file fails to parse
## 2.3.6
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "2.3.6",
"version": "2.4.0",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -1,5 +1,17 @@
# @astrojs/markdown-remark
## 1.2.0
### Minor Changes
- [#5654](https://github.com/withastro/astro/pull/5654) [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff) Thanks [@delucis](https://github.com/delucis)! - Refactor and export `rehypeHeadingIds` plugin
The `rehypeHeadingIds` plugin injects IDs for all headings in a Markdown document and can now also handle MDX inputs if needed. You can import and use this plugin if you need heading IDs to be injected _before_ other rehype plugins run.
### Patch Changes
- [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/`
## 1.1.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
"version": "1.1.3",
"version": "1.2.0",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -63,16 +63,16 @@ importers:
examples/basics:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
'@astrojs/mdx': ^0.13.0
'@astrojs/rss': ^1.2.1
'@astrojs/mdx': ^0.14.0
'@astrojs/rss': ^2.0.0
'@astrojs/sitemap': ^1.0.0
astro: ^1.7.2
astro: ^1.8.0
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/rss': link:../../packages/astro-rss
@ -81,14 +81,14 @@ importers:
examples/component:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
devDependencies:
astro: link:../../packages/astro
examples/deno:
specifiers:
'@astrojs/deno': ^3.0.0
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
devDependencies:
@ -104,7 +104,7 @@ importers:
'@types/node': ^18.0.0
'@types/react': ^17.0.45
'@types/react-dom': ^18.0.0
astro: ^1.7.2
astro: ^1.8.0
html-escaper: ^3.0.3
preact: ^10.7.3
react: ^18.1.0
@ -130,7 +130,7 @@ importers:
'@astrojs/alpinejs': ^0.1.2
'@types/alpinejs': ^3.7.0
alpinejs: ^3.10.2
astro: ^1.7.2
astro: ^1.8.0
dependencies:
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
'@types/alpinejs': 3.7.1
@ -141,7 +141,7 @@ importers:
specifiers:
'@astrojs/lit': ^1.0.0
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.7.2
astro: ^1.8.0
lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../packages/integrations/lit
@ -156,7 +156,7 @@ importers:
'@astrojs/solid-js': ^1.2.3
'@astrojs/svelte': ^1.0.2
'@astrojs/vue': ^1.2.2
astro: ^1.7.2
astro: ^1.8.0
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@ -181,7 +181,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@preact/signals': ^1.1.0
astro: ^1.7.2
astro: ^1.8.0
preact: ^10.7.3
dependencies:
'@astrojs/preact': link:../../packages/integrations/preact
@ -194,7 +194,7 @@ importers:
'@astrojs/react': ^1.2.2
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
astro: ^1.7.2
astro: ^1.8.0
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@ -208,7 +208,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^1.2.3
astro: ^1.7.2
astro: ^1.8.0
solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
@ -218,7 +218,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^1.0.2
astro: ^1.7.2
astro: ^1.8.0
svelte: ^3.48.0
dependencies:
'@astrojs/svelte': link:../../packages/integrations/svelte
@ -228,7 +228,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^1.2.2
astro: ^1.7.2
astro: ^1.8.0
vue: ^3.2.37
dependencies:
'@astrojs/vue': link:../../packages/integrations/vue
@ -238,32 +238,32 @@ importers:
examples/hackernews:
specifiers:
'@astrojs/node': ^4.0.0
astro: ^1.7.2
astro: ^1.8.0
dependencies:
'@astrojs/node': link:../../packages/integrations/node
astro: link:../../packages/astro
examples/integration:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
devDependencies:
astro: link:../../packages/astro
examples/minimal:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
@ -271,7 +271,7 @@ importers:
specifiers:
'@astrojs/node': ^4.0.0
'@astrojs/svelte': ^1.0.2
astro: ^1.7.2
astro: ^1.8.0
concurrently: ^7.2.1
svelte: ^3.48.0
unocss: ^0.15.6
@ -287,9 +287,9 @@ importers:
examples/with-content:
specifiers:
'@astrojs/mdx': ^0.13.0
'@astrojs/mdx': ^0.14.0
'@astrojs/sitemap': ^1.0.0
astro: ^1.7.2
astro: ^1.8.0
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
'@astrojs/sitemap': link:../../packages/integrations/sitemap
@ -297,8 +297,8 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
astro: ^1.7.2
'@astrojs/markdown-remark': ^1.2.0
astro: ^1.8.0
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@ -315,15 +315,15 @@ importers:
examples/with-markdown-shiki:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
dependencies:
astro: link:../../packages/astro
examples/with-mdx:
specifiers:
'@astrojs/mdx': ^0.13.0
'@astrojs/mdx': ^0.14.0
'@astrojs/preact': ^1.2.0
astro: ^1.7.2
astro: ^1.8.0
preact: ^10.6.5
dependencies:
'@astrojs/mdx': link:../../packages/integrations/mdx
@ -335,7 +335,7 @@ importers:
specifiers:
'@astrojs/preact': ^1.2.0
'@nanostores/preact': ^0.1.3
astro: ^1.7.2
astro: ^1.8.0
nanostores: ^0.5.12
preact: ^10.7.3
dependencies:
@ -347,10 +347,10 @@ importers:
examples/with-tailwindcss:
specifiers:
'@astrojs/mdx': ^0.13.0
'@astrojs/mdx': ^0.14.0
'@astrojs/tailwind': ^2.1.3
'@types/canvas-confetti': ^1.4.3
astro: ^1.7.2
astro: ^1.8.0
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@ -367,7 +367,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
dependencies:
@ -377,7 +377,7 @@ importers:
examples/with-vitest:
specifiers:
astro: ^1.7.2
astro: ^1.8.0
vitest: ^0.20.3
dependencies:
astro: link:../../packages/astro
@ -387,7 +387,7 @@ importers:
specifiers:
'@astrojs/compiler': ^0.31.0
'@astrojs/language-server': ^0.28.3
'@astrojs/markdown-remark': ^1.1.3
'@astrojs/markdown-remark': ^1.2.0
'@astrojs/telemetry': ^1.0.1
'@astrojs/webapi': ^1.1.1
'@babel/core': ^7.18.2
@ -2882,7 +2882,7 @@ importers:
packages/integrations/mdx:
specifiers:
'@astrojs/markdown-remark': ^1.1.3
'@astrojs/markdown-remark': ^1.2.0
'@astrojs/prism': ^1.0.2
'@mdx-js/mdx': ^2.1.2
'@mdx-js/rollup': ^2.1.1