[ci] release (#5984)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
7abb1e9056
commit
607f0ac31a
55 changed files with 155 additions and 139 deletions
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/mdx': patch
|
|
||||||
'@astrojs/markdown-remark': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix MDX heading IDs generation when using a frontmatter reference
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes a dev server edge case where prerender + getStaticPaths would not 404 on an unmatched route
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Support passing `children` as props to a React component
|
|
|
@ -1,7 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/cloudflare': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Support for prerendering in the Cloudflare integration
|
|
||||||
|
|
||||||
This fixes prerendering in the Cloudflare adapter. Now any prerendered routes are added to the `_routes.json` config so that the worker script is skipped for those routes.
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
'@astrojs/node': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix `Astro.url.protocol` when using the @astrojs/node SSR adapter with HTTPS
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
improve error message: change @astrojs/solid to @astrojs/solid-js
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Add type guard support to filters on `getCollection()`
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Astro <Code> component is not able to use a custom theme anymore
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@astrojs/cloudflare": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Re-enable streaming in Cloudflare Pages.
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"@astrojs/mdx": "^0.15.0",
|
"@astrojs/mdx": "^0.15.1",
|
||||||
"@astrojs/rss": "^2.1.0",
|
"@astrojs/rss": "^2.1.0",
|
||||||
"@astrojs/sitemap": "^1.0.0"
|
"@astrojs/sitemap": "^1.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
],
|
],
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "^2.0.0-beta.0"
|
"astro": "^2.0.0-beta.0"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/deno": "^4.0.0"
|
"@astrojs/deno": "^4.0.0"
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"preact": "^10.7.3",
|
"preact": "^10.7.3",
|
||||||
"react": "^18.1.0",
|
"react": "^18.1.0",
|
||||||
"react-dom": "^18.1.0",
|
"react-dom": "^18.1.0",
|
||||||
"@astrojs/react": "^2.0.0",
|
"@astrojs/react": "^2.0.1",
|
||||||
"@astrojs/preact": "^2.0.0",
|
"@astrojs/preact": "^2.0.0",
|
||||||
"@algolia/client-search": "^4.13.1",
|
"@algolia/client-search": "^4.13.1",
|
||||||
"@docsearch/css": "^3.1.0",
|
"@docsearch/css": "^3.1.0",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"alpinejs": "^3.10.2",
|
"alpinejs": "^3.10.2",
|
||||||
"@astrojs/alpinejs": "^0.1.2",
|
"@astrojs/alpinejs": "^0.1.2",
|
||||||
"@types/alpinejs": "^3.7.0"
|
"@types/alpinejs": "^3.7.0"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"lit": "^2.2.5",
|
"lit": "^2.2.5",
|
||||||
"@astrojs/lit": "^1.1.0",
|
"@astrojs/lit": "^1.1.0",
|
||||||
"@webcomponents/template-shadowroot": "^0.1.0"
|
"@webcomponents/template-shadowroot": "^0.1.0"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"preact": "^10.7.3",
|
"preact": "^10.7.3",
|
||||||
"react": "^18.1.0",
|
"react": "^18.1.0",
|
||||||
"react-dom": "^18.1.0",
|
"react-dom": "^18.1.0",
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"svelte": "^3.48.0",
|
"svelte": "^3.48.0",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.37",
|
||||||
"@astrojs/preact": "^2.0.0",
|
"@astrojs/preact": "^2.0.0",
|
||||||
"@astrojs/react": "^2.0.0",
|
"@astrojs/react": "^2.0.1",
|
||||||
"@astrojs/solid-js": "^2.0.0",
|
"@astrojs/solid-js": "^2.0.0",
|
||||||
"@astrojs/svelte": "^2.0.0",
|
"@astrojs/svelte": "^2.0.0",
|
||||||
"@astrojs/vue": "^2.0.0"
|
"@astrojs/vue": "^2.0.0"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"preact": "^10.7.3",
|
"preact": "^10.7.3",
|
||||||
"@astrojs/preact": "^2.0.0",
|
"@astrojs/preact": "^2.0.0",
|
||||||
"@preact/signals": "^1.1.0"
|
"@preact/signals": "^1.1.0"
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"react": "^18.1.0",
|
"react": "^18.1.0",
|
||||||
"react-dom": "^18.1.0",
|
"react-dom": "^18.1.0",
|
||||||
"@astrojs/react": "^2.0.0",
|
"@astrojs/react": "^2.0.1",
|
||||||
"@types/react": "^18.0.10",
|
"@types/react": "^18.0.10",
|
||||||
"@types/react-dom": "^18.0.5"
|
"@types/react-dom": "^18.0.5"
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"solid-js": "^1.4.3",
|
"solid-js": "^1.4.3",
|
||||||
"@astrojs/solid-js": "^2.0.0"
|
"@astrojs/solid-js": "^2.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,6 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"svelte": "^3.48.0",
|
"svelte": "^3.48.0",
|
||||||
"@astrojs/svelte": "^2.0.0",
|
"@astrojs/svelte": "^2.0.0",
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.37",
|
||||||
"@astrojs/vue": "^2.0.0"
|
"@astrojs/vue": "^2.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^5.0.0",
|
"@astrojs/node": "^5.0.1",
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
],
|
],
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "^2.0.0-beta.0"
|
"astro": "^2.0.0-beta.0"
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
"server": "node dist/server/entry.mjs"
|
"server": "node dist/server/entry.mjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"svelte": "^3.48.0",
|
"svelte": "^3.48.0",
|
||||||
"@astrojs/svelte": "^2.0.0",
|
"@astrojs/svelte": "^2.0.0",
|
||||||
"@astrojs/node": "^5.0.0",
|
"@astrojs/node": "^5.0.1",
|
||||||
"concurrently": "^7.2.1",
|
"concurrently": "^7.2.1",
|
||||||
"unocss": "^0.15.6",
|
"unocss": "^0.15.6",
|
||||||
"vite-imagetools": "^4.0.4"
|
"vite-imagetools": "^4.0.4"
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"@astrojs/markdown-remark": "^2.0.0",
|
"@astrojs/markdown-remark": "^2.0.1",
|
||||||
"hast-util-select": "5.0.1",
|
"hast-util-select": "5.0.1",
|
||||||
"rehype-autolink-headings": "^6.1.1",
|
"rehype-autolink-headings": "^6.1.1",
|
||||||
"rehype-slug": "^5.0.1",
|
"rehype-slug": "^5.0.1",
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1"
|
"astro": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"preact": "^10.6.5",
|
"preact": "^10.6.5",
|
||||||
"@astrojs/preact": "^2.0.0",
|
"@astrojs/preact": "^2.0.0",
|
||||||
"@astrojs/mdx": "^0.15.0"
|
"@astrojs/mdx": "^0.15.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"preact": "^10.7.3",
|
"preact": "^10.7.3",
|
||||||
"@astrojs/preact": "^2.0.0",
|
"@astrojs/preact": "^2.0.0",
|
||||||
"nanostores": "^0.5.12",
|
"nanostores": "^0.5.12",
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/mdx": "^0.15.0",
|
"@astrojs/mdx": "^0.15.1",
|
||||||
"@astrojs/tailwind": "^3.0.0",
|
"@astrojs/tailwind": "^3.0.0",
|
||||||
"@types/canvas-confetti": "^1.4.3",
|
"@types/canvas-confetti": "^1.4.3",
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.7",
|
||||||
"canvas-confetti": "^1.5.1",
|
"canvas-confetti": "^1.5.1",
|
||||||
"postcss": "^8.4.14",
|
"postcss": "^8.4.14",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"vite-plugin-pwa": "0.11.11",
|
"vite-plugin-pwa": "0.11.11",
|
||||||
"workbox-window": "^6.5.3"
|
"workbox-window": "^6.5.3"
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"test": "vitest"
|
"test": "vitest"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.0.1",
|
"astro": "^2.0.2",
|
||||||
"vitest": "^0.20.3"
|
"vitest": "^0.20.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,22 @@
|
||||||
# astro
|
# astro
|
||||||
|
|
||||||
|
## 2.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5983](https://github.com/withastro/astro/pull/5983) [`b53e0717b`](https://github.com/withastro/astro/commit/b53e0717b7f6b042baaeec7f87999e99c76c031c) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes a dev server edge case where prerender + getStaticPaths would not 404 on an unmatched route
|
||||||
|
|
||||||
|
- [#5992](https://github.com/withastro/astro/pull/5992) [`60b32d585`](https://github.com/withastro/astro/commit/60b32d58565d87e87573eb268408293fc28ec657) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fix `Astro.url.protocol` when using the @astrojs/node SSR adapter with HTTPS
|
||||||
|
|
||||||
|
- [#5971](https://github.com/withastro/astro/pull/5971) [`883e0cc29`](https://github.com/withastro/astro/commit/883e0cc29968d51ed6c7515be035a40b28bafdad) Thanks [@JLarky](https://github.com/JLarky)! - improve error message: change @astrojs/solid to @astrojs/solid-js
|
||||||
|
|
||||||
|
- [#5970](https://github.com/withastro/astro/pull/5970) [`dabce6b8c`](https://github.com/withastro/astro/commit/dabce6b8c684f851c3535f8acead06cbef6dce2a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add type guard support to filters on `getCollection()`
|
||||||
|
|
||||||
|
- [#5952](https://github.com/withastro/astro/pull/5952) [`aedf23f85`](https://github.com/withastro/astro/commit/aedf23f8582e32a6b94b81ddba9b323831f2b22a) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Astro <Code> component is not able to use a custom theme anymore
|
||||||
|
|
||||||
|
- Updated dependencies [[`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28)]:
|
||||||
|
- @astrojs/markdown-remark@2.0.1
|
||||||
|
|
||||||
## 2.0.1
|
## 2.0.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "astro",
|
"name": "astro",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
@ -101,7 +101,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/compiler": "^1.0.1",
|
"@astrojs/compiler": "^1.0.1",
|
||||||
"@astrojs/language-server": "^0.28.3",
|
"@astrojs/language-server": "^0.28.3",
|
||||||
"@astrojs/markdown-remark": "^2.0.0",
|
"@astrojs/markdown-remark": "^2.0.1",
|
||||||
"@astrojs/telemetry": "^2.0.0",
|
"@astrojs/telemetry": "^2.0.0",
|
||||||
"@astrojs/webapi": "^2.0.0",
|
"@astrojs/webapi": "^2.0.0",
|
||||||
"@babel/core": "^7.18.2",
|
"@babel/core": "^7.18.2",
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
# @astrojs/cloudflare
|
# @astrojs/cloudflare
|
||||||
|
|
||||||
|
## 6.1.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#5914](https://github.com/withastro/astro/pull/5914) [`088f5194c`](https://github.com/withastro/astro/commit/088f5194c55a6ec15b2eaf2cfb97f9ef45a24a33) Thanks [@AngusMorton](https://github.com/AngusMorton)! - Re-enable streaming in Cloudflare Pages.
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5993](https://github.com/withastro/astro/pull/5993) [`9855db676`](https://github.com/withastro/astro/commit/9855db676e61ad616c64382adeaa8c74de05f7e1) Thanks [@matthewp](https://github.com/matthewp)! - Support for prerendering in the Cloudflare integration
|
||||||
|
|
||||||
|
This fixes prerendering in the Cloudflare adapter. Now any prerendered routes are added to the `_routes.json` config so that the worker script is skipped for those routes.
|
||||||
|
|
||||||
|
- Updated dependencies [[`b53e0717b`](https://github.com/withastro/astro/commit/b53e0717b7f6b042baaeec7f87999e99c76c031c), [`60b32d585`](https://github.com/withastro/astro/commit/60b32d58565d87e87573eb268408293fc28ec657), [`883e0cc29`](https://github.com/withastro/astro/commit/883e0cc29968d51ed6c7515be035a40b28bafdad), [`dabce6b8c`](https://github.com/withastro/astro/commit/dabce6b8c684f851c3535f8acead06cbef6dce2a), [`aedf23f85`](https://github.com/withastro/astro/commit/aedf23f8582e32a6b94b81ddba9b323831f2b22a)]:
|
||||||
|
- astro@2.0.2
|
||||||
|
|
||||||
## 6.0.0
|
## 6.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/cloudflare",
|
"name": "@astrojs/cloudflare",
|
||||||
"description": "Deploy your site to cloudflare workers or cloudflare pages",
|
"description": "Deploy your site to cloudflare workers or cloudflare pages",
|
||||||
"version": "6.0.0",
|
"version": "6.1.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
"tiny-glob": "^0.2.9"
|
"tiny-glob": "^0.2.9"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "workspace:*",
|
"astro": "workspace:*",
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
"esbuild": "^0.15.18"
|
"esbuild": "^0.15.18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "workspace:*",
|
"astro": "workspace:*",
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
"vite": "^4.0.3"
|
"vite": "^4.0.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1",
|
"astro": "workspace:^2.0.2",
|
||||||
"sharp": ">=0.31.0"
|
"sharp": ">=0.31.0"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
# @astrojs/mdx
|
# @astrojs/mdx
|
||||||
|
|
||||||
|
## 0.15.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5978](https://github.com/withastro/astro/pull/5978) [`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fix MDX heading IDs generation when using a frontmatter reference
|
||||||
|
|
||||||
|
- Updated dependencies [[`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28)]:
|
||||||
|
- @astrojs/markdown-remark@2.0.1
|
||||||
|
|
||||||
## 0.15.0
|
## 0.15.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/mdx",
|
"name": "@astrojs/mdx",
|
||||||
"description": "Use MDX within Astro",
|
"description": "Use MDX within Astro",
|
||||||
"version": "0.15.0",
|
"version": "0.15.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
"test:match": "mocha --timeout 20000 -g"
|
"test:match": "mocha --timeout 20000 -g"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/markdown-remark": "^2.0.0",
|
"@astrojs/markdown-remark": "^2.0.1",
|
||||||
"@astrojs/prism": "^2.0.0",
|
"@astrojs/prism": "^2.0.0",
|
||||||
"@mdx-js/mdx": "^2.1.2",
|
"@mdx-js/mdx": "^2.1.2",
|
||||||
"@mdx-js/rollup": "^2.1.1",
|
"@mdx-js/rollup": "^2.1.1",
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
"esbuild": "^0.15.18"
|
"esbuild": "^0.15.18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@netlify/edge-handler-types": "^0.34.1",
|
"@netlify/edge-handler-types": "^0.34.1",
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
# @astrojs/node
|
# @astrojs/node
|
||||||
|
|
||||||
|
## 5.0.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5992](https://github.com/withastro/astro/pull/5992) [`60b32d585`](https://github.com/withastro/astro/commit/60b32d58565d87e87573eb268408293fc28ec657) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fix `Astro.url.protocol` when using the @astrojs/node SSR adapter with HTTPS
|
||||||
|
|
||||||
|
- Updated dependencies [[`b53e0717b`](https://github.com/withastro/astro/commit/b53e0717b7f6b042baaeec7f87999e99c76c031c), [`60b32d585`](https://github.com/withastro/astro/commit/60b32d58565d87e87573eb268408293fc28ec657), [`883e0cc29`](https://github.com/withastro/astro/commit/883e0cc29968d51ed6c7515be035a40b28bafdad), [`dabce6b8c`](https://github.com/withastro/astro/commit/dabce6b8c684f851c3535f8acead06cbef6dce2a), [`aedf23f85`](https://github.com/withastro/astro/commit/aedf23f8582e32a6b94b81ddba9b323831f2b22a)]:
|
||||||
|
- astro@2.0.2
|
||||||
|
|
||||||
## 5.0.0
|
## 5.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/node",
|
"name": "@astrojs/node",
|
||||||
"description": "Deploy your site to a Node.js server",
|
"description": "Deploy your site to a Node.js server",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
"send": "^0.18.0"
|
"send": "^0.18.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/send": "^0.17.1",
|
"@types/send": "^0.17.1",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# @astrojs/react
|
# @astrojs/react
|
||||||
|
|
||||||
|
## 2.0.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5886](https://github.com/withastro/astro/pull/5886) [`9d4bfc76e`](https://github.com/withastro/astro/commit/9d4bfc76e8de7cf85997100145532a6fa7d2b025) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Support passing `children` as props to a React component
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/react",
|
"name": "@astrojs/react",
|
||||||
"description": "Use React components within Astro",
|
"description": "Use React components within Astro",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"svelte": "^3.54.0",
|
"svelte": "^3.54.0",
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.12.0"
|
"node": ">=16.12.0"
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"tailwindcss": "^3.0.24",
|
"tailwindcss": "^3.0.24",
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"peerDependencyRules": {
|
"peerDependencyRules": {
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
"set-cookie-parser": "^2.5.1"
|
"set-cookie-parser": "^2.5.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/set-cookie-parser": "^2.4.2",
|
"@types/set-cookie-parser": "^2.4.2",
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "^3.2.30",
|
"vue": "^3.2.30",
|
||||||
"astro": "workspace:^2.0.1"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.12.0"
|
"node": ">=16.12.0"
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
# @astrojs/markdown-remark
|
# @astrojs/markdown-remark
|
||||||
|
|
||||||
|
## 2.0.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5978](https://github.com/withastro/astro/pull/5978) [`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fix MDX heading IDs generation when using a frontmatter reference
|
||||||
|
|
||||||
|
- Updated dependencies [[`b53e0717b`](https://github.com/withastro/astro/commit/b53e0717b7f6b042baaeec7f87999e99c76c031c), [`60b32d585`](https://github.com/withastro/astro/commit/60b32d58565d87e87573eb268408293fc28ec657), [`883e0cc29`](https://github.com/withastro/astro/commit/883e0cc29968d51ed6c7515be035a40b28bafdad), [`dabce6b8c`](https://github.com/withastro/astro/commit/dabce6b8c684f851c3535f8acead06cbef6dce2a), [`aedf23f85`](https://github.com/withastro/astro/commit/aedf23f8582e32a6b94b81ddba9b323831f2b22a)]:
|
||||||
|
- astro@2.0.2
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/markdown-remark",
|
"name": "@astrojs/markdown-remark",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
"test": "mocha --exit --timeout 20000"
|
"test": "mocha --exit --timeout 20000"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "workspace:^2.0.0"
|
"astro": "workspace:^2.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/prism": "^2.0.0",
|
"@astrojs/prism": "^2.0.0",
|
||||||
|
|
|
@ -63,16 +63,16 @@ importers:
|
||||||
|
|
||||||
examples/basics:
|
examples/basics:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/blog:
|
examples/blog:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/mdx': ^0.15.0
|
'@astrojs/mdx': ^0.15.1
|
||||||
'@astrojs/rss': ^2.1.0
|
'@astrojs/rss': ^2.1.0
|
||||||
'@astrojs/sitemap': ^1.0.0
|
'@astrojs/sitemap': ^1.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/mdx': link:../../packages/integrations/mdx
|
'@astrojs/mdx': link:../../packages/integrations/mdx
|
||||||
'@astrojs/rss': link:../../packages/astro-rss
|
'@astrojs/rss': link:../../packages/astro-rss
|
||||||
|
@ -81,14 +81,14 @@ importers:
|
||||||
|
|
||||||
examples/component:
|
examples/component:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/deno:
|
examples/deno:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/deno': ^4.0.0
|
'@astrojs/deno': ^4.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
@ -98,13 +98,13 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@algolia/client-search': ^4.13.1
|
'@algolia/client-search': ^4.13.1
|
||||||
'@astrojs/preact': ^2.0.0
|
'@astrojs/preact': ^2.0.0
|
||||||
'@astrojs/react': ^2.0.0
|
'@astrojs/react': ^2.0.1
|
||||||
'@docsearch/css': ^3.1.0
|
'@docsearch/css': ^3.1.0
|
||||||
'@docsearch/react': ^3.1.0
|
'@docsearch/react': ^3.1.0
|
||||||
'@types/node': ^18.0.0
|
'@types/node': ^18.0.0
|
||||||
'@types/react': ^17.0.45
|
'@types/react': ^17.0.45
|
||||||
'@types/react-dom': ^18.0.0
|
'@types/react-dom': ^18.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
html-escaper: ^3.0.3
|
html-escaper: ^3.0.3
|
||||||
preact: ^10.7.3
|
preact: ^10.7.3
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
|
@ -130,7 +130,7 @@ importers:
|
||||||
'@astrojs/alpinejs': ^0.1.2
|
'@astrojs/alpinejs': ^0.1.2
|
||||||
'@types/alpinejs': ^3.7.0
|
'@types/alpinejs': ^3.7.0
|
||||||
alpinejs: ^3.10.2
|
alpinejs: ^3.10.2
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
|
'@astrojs/alpinejs': link:../../packages/integrations/alpinejs
|
||||||
'@types/alpinejs': 3.7.1
|
'@types/alpinejs': 3.7.1
|
||||||
|
@ -141,7 +141,7 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/lit': ^1.1.0
|
'@astrojs/lit': ^1.1.0
|
||||||
'@webcomponents/template-shadowroot': ^0.1.0
|
'@webcomponents/template-shadowroot': ^0.1.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
lit: ^2.2.5
|
lit: ^2.2.5
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/lit': link:../../packages/integrations/lit
|
'@astrojs/lit': link:../../packages/integrations/lit
|
||||||
|
@ -152,11 +152,11 @@ importers:
|
||||||
examples/framework-multiple:
|
examples/framework-multiple:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^2.0.0
|
'@astrojs/preact': ^2.0.0
|
||||||
'@astrojs/react': ^2.0.0
|
'@astrojs/react': ^2.0.1
|
||||||
'@astrojs/solid-js': ^2.0.0
|
'@astrojs/solid-js': ^2.0.0
|
||||||
'@astrojs/svelte': ^2.0.0
|
'@astrojs/svelte': ^2.0.0
|
||||||
'@astrojs/vue': ^2.0.0
|
'@astrojs/vue': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
preact: ^10.7.3
|
preact: ^10.7.3
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
react-dom: ^18.1.0
|
react-dom: ^18.1.0
|
||||||
|
@ -181,7 +181,7 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^2.0.0
|
'@astrojs/preact': ^2.0.0
|
||||||
'@preact/signals': ^1.1.0
|
'@preact/signals': ^1.1.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
preact: ^10.7.3
|
preact: ^10.7.3
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/preact': link:../../packages/integrations/preact
|
'@astrojs/preact': link:../../packages/integrations/preact
|
||||||
|
@ -191,10 +191,10 @@ importers:
|
||||||
|
|
||||||
examples/framework-react:
|
examples/framework-react:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/react': ^2.0.0
|
'@astrojs/react': ^2.0.1
|
||||||
'@types/react': ^18.0.10
|
'@types/react': ^18.0.10
|
||||||
'@types/react-dom': ^18.0.5
|
'@types/react-dom': ^18.0.5
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
react-dom: ^18.1.0
|
react-dom: ^18.1.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -208,7 +208,7 @@ importers:
|
||||||
examples/framework-solid:
|
examples/framework-solid:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/solid-js': ^2.0.0
|
'@astrojs/solid-js': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
solid-js: ^1.4.3
|
solid-js: ^1.4.3
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/solid-js': link:../../packages/integrations/solid
|
'@astrojs/solid-js': link:../../packages/integrations/solid
|
||||||
|
@ -218,7 +218,7 @@ importers:
|
||||||
examples/framework-svelte:
|
examples/framework-svelte:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/svelte': ^2.0.0
|
'@astrojs/svelte': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
svelte: ^3.48.0
|
svelte: ^3.48.0
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/svelte': link:../../packages/integrations/svelte
|
'@astrojs/svelte': link:../../packages/integrations/svelte
|
||||||
|
@ -228,7 +228,7 @@ importers:
|
||||||
examples/framework-vue:
|
examples/framework-vue:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/vue': ^2.0.0
|
'@astrojs/vue': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
vue: ^3.2.37
|
vue: ^3.2.37
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/vue': link:../../packages/integrations/vue
|
'@astrojs/vue': link:../../packages/integrations/vue
|
||||||
|
@ -237,41 +237,41 @@ importers:
|
||||||
|
|
||||||
examples/hackernews:
|
examples/hackernews:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/node': ^5.0.0
|
'@astrojs/node': ^5.0.1
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/node': link:../../packages/integrations/node
|
'@astrojs/node': link:../../packages/integrations/node
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/integration:
|
examples/integration:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/minimal:
|
examples/minimal:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/non-html-pages:
|
examples/non-html-pages:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/portfolio:
|
examples/portfolio:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/ssr:
|
examples/ssr:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/node': ^5.0.0
|
'@astrojs/node': ^5.0.1
|
||||||
'@astrojs/svelte': ^2.0.0
|
'@astrojs/svelte': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
concurrently: ^7.2.1
|
concurrently: ^7.2.1
|
||||||
svelte: ^3.48.0
|
svelte: ^3.48.0
|
||||||
unocss: ^0.15.6
|
unocss: ^0.15.6
|
||||||
|
@ -287,8 +287,8 @@ importers:
|
||||||
|
|
||||||
examples/with-markdown-plugins:
|
examples/with-markdown-plugins:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/markdown-remark': ^2.0.0
|
'@astrojs/markdown-remark': ^2.0.1
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
hast-util-select: 5.0.1
|
hast-util-select: 5.0.1
|
||||||
rehype-autolink-headings: ^6.1.1
|
rehype-autolink-headings: ^6.1.1
|
||||||
rehype-slug: ^5.0.1
|
rehype-slug: ^5.0.1
|
||||||
|
@ -305,15 +305,15 @@ importers:
|
||||||
|
|
||||||
examples/with-markdown-shiki:
|
examples/with-markdown-shiki:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/with-mdx:
|
examples/with-mdx:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/mdx': ^0.15.0
|
'@astrojs/mdx': ^0.15.1
|
||||||
'@astrojs/preact': ^2.0.0
|
'@astrojs/preact': ^2.0.0
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
preact: ^10.6.5
|
preact: ^10.6.5
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/mdx': link:../../packages/integrations/mdx
|
'@astrojs/mdx': link:../../packages/integrations/mdx
|
||||||
|
@ -325,7 +325,7 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^2.0.0
|
'@astrojs/preact': ^2.0.0
|
||||||
'@nanostores/preact': ^0.1.3
|
'@nanostores/preact': ^0.1.3
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
nanostores: ^0.5.12
|
nanostores: ^0.5.12
|
||||||
preact: ^10.7.3
|
preact: ^10.7.3
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -337,10 +337,10 @@ importers:
|
||||||
|
|
||||||
examples/with-tailwindcss:
|
examples/with-tailwindcss:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/mdx': ^0.15.0
|
'@astrojs/mdx': ^0.15.1
|
||||||
'@astrojs/tailwind': ^3.0.0
|
'@astrojs/tailwind': ^3.0.0
|
||||||
'@types/canvas-confetti': ^1.4.3
|
'@types/canvas-confetti': ^1.4.3
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
autoprefixer: ^10.4.7
|
autoprefixer: ^10.4.7
|
||||||
canvas-confetti: ^1.5.1
|
canvas-confetti: ^1.5.1
|
||||||
postcss: ^8.4.14
|
postcss: ^8.4.14
|
||||||
|
@ -357,7 +357,7 @@ importers:
|
||||||
|
|
||||||
examples/with-vite-plugin-pwa:
|
examples/with-vite-plugin-pwa:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
vite-plugin-pwa: 0.11.11
|
vite-plugin-pwa: 0.11.11
|
||||||
workbox-window: ^6.5.3
|
workbox-window: ^6.5.3
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -367,7 +367,7 @@ importers:
|
||||||
|
|
||||||
examples/with-vitest:
|
examples/with-vitest:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^2.0.1
|
astro: ^2.0.2
|
||||||
vitest: ^0.20.3
|
vitest: ^0.20.3
|
||||||
dependencies:
|
dependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
@ -377,7 +377,7 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/compiler': ^1.0.1
|
'@astrojs/compiler': ^1.0.1
|
||||||
'@astrojs/language-server': ^0.28.3
|
'@astrojs/language-server': ^0.28.3
|
||||||
'@astrojs/markdown-remark': ^2.0.0
|
'@astrojs/markdown-remark': ^2.0.1
|
||||||
'@astrojs/telemetry': ^2.0.0
|
'@astrojs/telemetry': ^2.0.0
|
||||||
'@astrojs/webapi': ^2.0.0
|
'@astrojs/webapi': ^2.0.0
|
||||||
'@babel/core': ^7.18.2
|
'@babel/core': ^7.18.2
|
||||||
|
@ -2860,7 +2860,7 @@ importers:
|
||||||
|
|
||||||
packages/integrations/mdx:
|
packages/integrations/mdx:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/markdown-remark': ^2.0.0
|
'@astrojs/markdown-remark': ^2.0.1
|
||||||
'@astrojs/prism': ^2.0.0
|
'@astrojs/prism': ^2.0.0
|
||||||
'@mdx-js/mdx': ^2.1.2
|
'@mdx-js/mdx': ^2.1.2
|
||||||
'@mdx-js/rollup': ^2.1.1
|
'@mdx-js/rollup': ^2.1.1
|
||||||
|
|
Loading…
Reference in a new issue