mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] release (#13449)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
94ada2ab83
commit
da71558808
42 changed files with 127 additions and 126 deletions
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'@astrojs/mdx': patch
|
||||
'@astrojs/markdown-remark': patch
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Upgrade to shiki v3
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Handle `server.allowedHosts` when the value is true without attempting to push it into an array.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes a bug that caused some very large data stores to save incomplete data.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@astrojs/sitemap': minor
|
||||
---
|
||||
|
||||
Add support for XSL in sitemap-index.xml
|
|
@ -1,22 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Adds a new function called `insertPageRoute` to the Astro Container API.
|
||||
|
||||
The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`.
|
||||
|
||||
For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this:
|
||||
|
||||
```js
|
||||
import Post from "../src/pages/Post.astro";
|
||||
import GenericError from "../src/pages/GenericError.astro";
|
||||
import { experimental_AstroContainer as AstroContainer } from "astro/container";
|
||||
|
||||
const container = await AstroContainer.create();
|
||||
container.insertPageRoute("/generic-error", GenericError);
|
||||
const result = await container.renderToString(Post);
|
||||
console.log(result) // this should print the response from GenericError.astro
|
||||
```
|
||||
|
||||
This new method only works for page routes, which means that endpoints aren't supported.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Prevent bad value in x-forwarded-host from crashing request
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components.
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.0",
|
||||
"@astrojs/mdx": "^4.2.1",
|
||||
"@astrojs/rss": "^4.0.11",
|
||||
"@astrojs/sitemap": "^3.2.1",
|
||||
"astro": "^5.5.2"
|
||||
"@astrojs/sitemap": "^3.3.0",
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^4.0.0 || ^5.0.0"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/react": "^4.2.1",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"vitest": "^3.0.8"
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
"@astrojs/alpinejs": "^0.4.3",
|
||||
"@types/alpinejs": "^3.13.11",
|
||||
"alpinejs": "^3.14.8",
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"@astrojs/vue": "^5.0.7",
|
||||
"@types/react": "^18.3.18",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"preact": "^10.26.4",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/preact": "^4.0.5",
|
||||
"@preact/signals": "^2.0.1",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"@astrojs/react": "^4.2.1",
|
||||
"@types/react": "^18.3.18",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1"
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/solid-js": "^5.0.5",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"solid-js": "^1.9.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/svelte": "^7.0.6",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"svelte": "^5.22.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/vue": "^5.0.7",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"vue": "^3.5.13"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^9.1.3",
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^4.0.0"
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/node": "^9.1.3",
|
||||
"@astrojs/svelte": "^7.0.6",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"svelte": "^5.22.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"sass": "^1.85.1",
|
||||
"sharp": "^0.33.3"
|
||||
}
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.17.8",
|
||||
"astro": "^5.5.2"
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/markdoc": "^0.13.0",
|
||||
"astro": "^5.5.2"
|
||||
"@astrojs/markdoc": "^0.13.1",
|
||||
"astro": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.0",
|
||||
"@astrojs/mdx": "^4.2.1",
|
||||
"@astrojs/preact": "^4.0.5",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/preact": "^4.0.5",
|
||||
"@nanostores/preact": "^0.5.2",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"nanostores": "^0.11.4",
|
||||
"preact": "^10.26.4"
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "^4.2.0",
|
||||
"@astrojs/mdx": "^4.2.1",
|
||||
"@tailwindcss/vite": "^4.0.12",
|
||||
"@types/canvas-confetti": "^1.9.0",
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"canvas-confetti": "^1.9.3",
|
||||
"tailwindcss": "^4.0.12"
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.5.2",
|
||||
"astro": "^5.5.3",
|
||||
"vitest": "^3.0.8"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,43 @@
|
|||
# astro
|
||||
|
||||
## 5.5.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Handle `server.allowedHosts` when the value is true without attempting to push it into an array.
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug that caused some very large data stores to save incomplete data.
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new function called `insertPageRoute` to the Astro Container API.
|
||||
|
||||
The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`.
|
||||
|
||||
For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this:
|
||||
|
||||
```js
|
||||
import Post from '../src/pages/Post.astro';
|
||||
import GenericError from '../src/pages/GenericError.astro';
|
||||
import { experimental_AstroContainer as AstroContainer } from 'astro/container';
|
||||
|
||||
const container = await AstroContainer.create();
|
||||
container.insertPageRoute('/generic-error', GenericError);
|
||||
const result = await container.renderToString(Post);
|
||||
console.log(result); // this should print the response from GenericError.astro
|
||||
```
|
||||
|
||||
This new method only works for page routes, which means that endpoints aren't supported.
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Prevent bad value in x-forwarded-host from crashing request
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components.
|
||||
|
||||
- Updated dependencies [[`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366)]:
|
||||
- @astrojs/markdown-remark@6.3.1
|
||||
|
||||
## 5.5.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"version": "5.5.2",
|
||||
"version": "5.5.3",
|
||||
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
||||
"type": "module",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# @astrojs/markdoc
|
||||
|
||||
## 0.13.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [[`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366)]:
|
||||
- @astrojs/markdown-remark@6.3.1
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/markdoc",
|
||||
"description": "Add support for Markdoc in your Astro site",
|
||||
"version": "0.13.0",
|
||||
"version": "0.13.1",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
# @astrojs/mdx
|
||||
|
||||
## 4.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
|
||||
|
||||
- Updated dependencies [[`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366)]:
|
||||
- @astrojs/markdown-remark@6.3.1
|
||||
|
||||
## 4.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/mdx",
|
||||
"description": "Add support for MDX pages in your Astro site",
|
||||
"version": "4.2.0",
|
||||
"version": "4.2.1",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/sitemap
|
||||
|
||||
## 3.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Add support for XSL in sitemap-index.xml
|
||||
|
||||
## 3.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/sitemap",
|
||||
"description": "Generate a sitemap for your Astro site",
|
||||
"version": "3.2.1",
|
||||
"version": "3.3.0",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/markdown-remark
|
||||
|
||||
## 6.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#13448](https://github.com/withastro/astro/pull/13448) [`91c9503`](https://github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@ematipico](https://github.com/ematipico)! - Upgrade to shiki v3
|
||||
|
||||
## 6.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/markdown-remark",
|
||||
"version": "6.3.0",
|
||||
"version": "6.3.1",
|
||||
"type": "module",
|
||||
"author": "withastro",
|
||||
"license": "MIT",
|
||||
|
|
62
pnpm-lock.yaml
generated
62
pnpm-lock.yaml
generated
|
@ -142,28 +142,28 @@ importers:
|
|||
examples/basics:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/blog:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.0
|
||||
specifier: ^4.2.1
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@astrojs/rss':
|
||||
specifier: ^4.0.11
|
||||
version: link:../../packages/astro-rss
|
||||
'@astrojs/sitemap':
|
||||
specifier: ^3.2.1
|
||||
specifier: ^3.3.0
|
||||
version: link:../../packages/integrations/sitemap
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/component:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/container-with-vitest:
|
||||
|
@ -172,7 +172,7 @@ importers:
|
|||
specifier: ^4.2.1
|
||||
version: link:../../packages/integrations/react
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
react:
|
||||
specifier: ^18.3.1
|
||||
|
@ -203,7 +203,7 @@ importers:
|
|||
specifier: ^3.14.8
|
||||
version: 3.14.8
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/framework-multiple:
|
||||
|
@ -230,7 +230,7 @@ importers:
|
|||
specifier: ^18.3.5
|
||||
version: 18.3.5(@types/react@18.3.18)
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -260,7 +260,7 @@ importers:
|
|||
specifier: ^2.0.1
|
||||
version: 2.0.1(preact@10.26.4)
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -278,7 +278,7 @@ importers:
|
|||
specifier: ^18.3.5
|
||||
version: 18.3.5(@types/react@18.3.18)
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
react:
|
||||
specifier: ^18.3.1
|
||||
|
@ -293,7 +293,7 @@ importers:
|
|||
specifier: ^5.0.5
|
||||
version: link:../../packages/integrations/solid
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
solid-js:
|
||||
specifier: ^1.9.5
|
||||
|
@ -305,7 +305,7 @@ importers:
|
|||
specifier: ^7.0.6
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^5.22.6
|
||||
|
@ -317,7 +317,7 @@ importers:
|
|||
specifier: ^5.0.7
|
||||
version: link:../../packages/integrations/vue
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
vue:
|
||||
specifier: ^3.5.13
|
||||
|
@ -329,25 +329,25 @@ importers:
|
|||
specifier: ^9.1.3
|
||||
version: link:../../packages/integrations/node
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/integration:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/minimal:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/portfolio:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/ssr:
|
||||
|
@ -359,7 +359,7 @@ importers:
|
|||
specifier: ^7.0.6
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^5.22.6
|
||||
|
@ -368,7 +368,7 @@ importers:
|
|||
examples/starlog:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
sass:
|
||||
specifier: ^1.85.1
|
||||
|
@ -383,28 +383,28 @@ importers:
|
|||
specifier: ^18.17.8
|
||||
version: 18.19.50
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-markdoc:
|
||||
dependencies:
|
||||
'@astrojs/markdoc':
|
||||
specifier: ^0.13.0
|
||||
specifier: ^0.13.1
|
||||
version: link:../../packages/integrations/markdoc
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-mdx:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.0
|
||||
specifier: ^4.2.1
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@astrojs/preact':
|
||||
specifier: ^4.0.5
|
||||
version: link:../../packages/integrations/preact
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.26.4
|
||||
|
@ -419,7 +419,7 @@ importers:
|
|||
specifier: ^0.5.2
|
||||
version: 0.5.2(nanostores@0.11.4)(preact@10.26.4)
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
nanostores:
|
||||
specifier: ^0.11.4
|
||||
|
@ -431,7 +431,7 @@ importers:
|
|||
examples/with-tailwindcss:
|
||||
dependencies:
|
||||
'@astrojs/mdx':
|
||||
specifier: ^4.2.0
|
||||
specifier: ^4.2.1
|
||||
version: link:../../packages/integrations/mdx
|
||||
'@tailwindcss/vite':
|
||||
specifier: ^4.0.12
|
||||
|
@ -440,7 +440,7 @@ importers:
|
|||
specifier: ^1.9.0
|
||||
version: 1.9.0
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
canvas-confetti:
|
||||
specifier: ^1.9.3
|
||||
|
@ -452,7 +452,7 @@ importers:
|
|||
examples/with-vitest:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^5.5.2
|
||||
specifier: ^5.5.3
|
||||
version: link:../../packages/astro
|
||||
vitest:
|
||||
specifier: ^3.0.8
|
||||
|
@ -2514,12 +2514,6 @@ importers:
|
|||
specifier: workspace:*
|
||||
version: link:../../..
|
||||
|
||||
packages/astro/test/fixtures/container:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: workspace:*
|
||||
version: link:../../..
|
||||
|
||||
packages/astro/test/fixtures/container-custom-renderers:
|
||||
dependencies:
|
||||
'@astrojs/react':
|
||||
|
|
Loading…
Add table
Reference in a new issue