0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] release (#8895)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Houston (Bot) 2023-10-24 09:26:45 -07:00 committed by GitHub
parent f2dd895d71
commit a86b41c852
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 155 additions and 136 deletions

View file

@ -1,7 +0,0 @@
---
"@astrojs/telemetry": patch
---
Track if the Astro CLI is running in a [`TTY`](nodejs.org/api/process.html#a-note-on-process-io) context.
This information helps us better understand scripted use of Astro vs. direct terminal use of Astro CLI by a user, especially the `astro dev` command.

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdoc': minor
---
Added ignoreIndentation as a markdoc integration option to enable better readability of source code.

View file

@ -1,14 +0,0 @@
---
'@astrojs/vercel': minor
---
You can now configure how long your functions can run before timing out.
```diff
export default defineConfig({
output: "server",
adapter: vercel({
+ maxDuration: 60
}),
});
```

View file

@ -1,5 +0,0 @@
---
'create-astro': minor
---
Automatically installs the required dependencies to run the astro check command when the user indicates they plan to write TypeScript.

View file

@ -1,5 +0,0 @@
---
'@astrojs/vercel': patch
---
Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode

View file

@ -1,5 +0,0 @@
---
'@astrojs/react': patch
---
Fixes client hydration in islands when using experimentalReactChildren

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixes CSS modules ordering by rendering styles before links

View file

@ -1,5 +0,0 @@
---
"@astrojs/mdx": patch
---
Update the README to suggest that users install the [official MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for [VS Code](https://code.visualstudio.com/).

View file

@ -1,5 +0,0 @@
---
'create-astro': patch
---
No longer attempts to delete the directory after a template download fails if the path is `.`, `./` or starts with `../`.

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^1.1.2",
"@astrojs/mdx": "^1.1.3",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.2",
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"

View file

@ -14,6 +14,6 @@
"@astrojs/alpinejs": "^0.3.1",
"@types/alpinejs": "^3.7.2",
"alpinejs": "^3.12.3",
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/lit": "^3.0.2",
"@webcomponents/template-shadowroot": "^0.2.1",
"astro": "^3.3.3",
"astro": "^3.3.4",
"lit": "^2.8.0"
}
}

View file

@ -12,11 +12,11 @@
},
"dependencies": {
"@astrojs/preact": "^3.0.1",
"@astrojs/react": "^3.0.3",
"@astrojs/react": "^3.0.4",
"@astrojs/solid-js": "^3.0.2",
"@astrojs/svelte": "^4.0.3",
"@astrojs/vue": "^3.0.2",
"astro": "^3.3.3",
"astro": "^3.3.4",
"preact": "^10.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",

View file

@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.0.1",
"@preact/signals": "^1.2.1",
"astro": "^3.3.3",
"astro": "^3.3.4",
"preact": "^10.17.1"
}
}

View file

@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "^3.0.3",
"@astrojs/react": "^3.0.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"astro": "^3.3.3",
"astro": "^3.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}

View file

@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^3.0.2",
"astro": "^3.3.3",
"astro": "^3.3.4",
"solid-js": "^1.7.11"
}
}

View file

@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/svelte": "^4.0.3",
"astro": "^3.3.3",
"astro": "^3.3.4",
"svelte": "^4.2.0"
}
}

View file

@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/vue": "^3.0.2",
"astro": "^3.3.3",
"astro": "^3.3.4",
"vue": "^3.3.4"
}
}

View file

@ -12,6 +12,6 @@
},
"dependencies": {
"@astrojs/node": "^6.0.3",
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0"

View file

@ -13,7 +13,7 @@
},
"dependencies": {
"@astrojs/node": "^6.0.3",
"astro": "^3.3.3",
"astro": "^3.3.4",
"html-minifier": "^4.0.0"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/node": "^6.0.3",
"@astrojs/svelte": "^4.0.3",
"astro": "^3.3.3",
"astro": "^3.3.4",
"svelte": "^4.2.0"
}
}

View file

@ -12,6 +12,6 @@
"devDependencies": {
"@astrojs/tailwind": "^5.0.2",
"@astrojs/node": "^6.0.3",
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/markdoc": "^0.6.0",
"astro": "^3.3.3"
"@astrojs/markdoc": "^0.7.0",
"astro": "^3.3.4"
}
}

View file

@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/markdown-remark": "^3.3.0",
"astro": "^3.3.3",
"astro": "^3.3.4",
"hast-util-select": "^5.0.5",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",

View file

@ -11,6 +11,6 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3"
"astro": "^3.3.4"
}
}

View file

@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^1.1.2",
"@astrojs/mdx": "^1.1.3",
"@astrojs/preact": "^3.0.1",
"astro": "^3.3.3",
"astro": "^3.3.4",
"preact": "^10.17.1"
}
}

View file

@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/preact": "^3.0.1",
"@nanostores/preact": "^0.5.0",
"astro": "^3.3.3",
"astro": "^3.3.4",
"nanostores": "^0.9.3",
"preact": "^10.17.1"
}

View file

@ -11,10 +11,10 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^1.1.2",
"@astrojs/mdx": "^1.1.3",
"@astrojs/tailwind": "^5.0.2",
"@types/canvas-confetti": "^1.6.0",
"astro": "^3.3.3",
"astro": "^3.3.4",
"autoprefixer": "^10.4.15",
"canvas-confetti": "^1.6.0",
"postcss": "^8.4.28",

View file

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.3.3",
"astro": "^3.3.4",
"vite-plugin-pwa": "0.16.4",
"workbox-window": "^7.0.0"
}

View file

@ -12,7 +12,7 @@
"test": "vitest"
},
"dependencies": {
"astro": "^3.3.3",
"astro": "^3.3.4",
"vitest": "^0.34.2"
}
}

View file

@ -1,5 +1,14 @@
# astro
## 3.3.4
### Patch Changes
- [#8877](https://github.com/withastro/astro/pull/8877) [`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297) Thanks [@bluwy](https://github.com/bluwy)! - Fixes CSS modules ordering by rendering styles before links
- Updated dependencies [[`341ef6578`](https://github.com/withastro/astro/commit/341ef6578528a00f89bf6da5e4243b0fde272816)]:
- @astrojs/telemetry@3.0.4
## 3.3.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "3.3.3",
"version": "3.3.4",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",

View file

@ -1,5 +1,15 @@
# create-astro
## 4.4.0
### Minor Changes
- [#8853](https://github.com/withastro/astro/pull/8853) [`ce807a2bf`](https://github.com/withastro/astro/commit/ce807a2bfef325683bfdb01065a73c4e2b0a5fe5) Thanks [@rayriffy](https://github.com/rayriffy)! - Automatically installs the required dependencies to run the astro check command when the user indicates they plan to write TypeScript.
### Patch Changes
- [#8841](https://github.com/withastro/astro/pull/8841) [`f2dd895d7`](https://github.com/withastro/astro/commit/f2dd895d71e0fccfbc1b98890ceefb69f32524d5) Thanks [@Genteure](https://github.com/Genteure)! - No longer attempts to delete the directory after a template download fails if the path is `.`, `./` or starts with `../`.
## 4.3.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "create-astro",
"version": "4.3.0",
"version": "4.4.0",
"type": "module",
"author": "withastro",
"license": "MIT",

View file

@ -1,5 +1,16 @@
# @astrojs/markdoc
## 0.7.0
### Minor Changes
- [#8802](https://github.com/withastro/astro/pull/8802) [`73b8d60f8`](https://github.com/withastro/astro/commit/73b8d60f8c3eeae74035202b0ea0d4848e736c7d) Thanks [@AndyClifford](https://github.com/AndyClifford)! - Added ignoreIndentation as a markdoc integration option to enable better readability of source code.
### Patch Changes
- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]:
- astro@3.3.4
## 0.6.0
### Minor Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc in your Astro site",
"version": "0.6.0",
"version": "0.7.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -75,7 +75,7 @@
"zod": "3.21.1"
},
"peerDependencies": {
"astro": "workspace:^3.3.3"
"astro": "workspace:^3.3.4"
},
"devDependencies": {
"@astrojs/markdown-remark": "workspace:*",

View file

@ -1,5 +1,14 @@
# @astrojs/mdx
## 1.1.3
### Patch Changes
- [#8897](https://github.com/withastro/astro/pull/8897) [`5a3d46da1`](https://github.com/withastro/astro/commit/5a3d46da1e80f62a29eaf464eeb87c626cc5593f) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update the README to suggest that users install the [official MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) for [VS Code](https://code.visualstudio.com/).
- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]:
- astro@3.3.4
## 1.1.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Add support for MDX pages in your Astro site",
"version": "1.1.2",
"version": "1.1.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@ -51,7 +51,7 @@
"vfile": "^5.3.7"
},
"peerDependencies": {
"astro": "workspace:^3.3.3"
"astro": "workspace:^3.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",

View file

@ -37,7 +37,7 @@
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "workspace:^3.3.3"
"astro": "workspace:^3.3.4"
},
"devDependencies": {
"@types/node": "^18.17.8",

View file

@ -1,5 +1,11 @@
# @astrojs/react
## 3.0.4
### Patch Changes
- [#8898](https://github.com/withastro/astro/pull/8898) [`4dee38711`](https://github.com/withastro/astro/commit/4dee38711cbf83efb5e12fbfa8e69e2495c49acf) Thanks [@matthewp](https://github.com/matthewp)! - Fixes client hydration in islands when using experimentalReactChildren
## 3.0.3
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/react",
"description": "Use React components within Astro",
"version": "3.0.3",
"version": "3.0.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -48,7 +48,7 @@
"vite": "^4.4.9"
},
"peerDependencies": {
"astro": "workspace:^3.3.3",
"astro": "workspace:^3.3.4",
"svelte": "^3.55.0 || ^4.0.0"
},
"engines": {

View file

@ -43,7 +43,7 @@
"vite": "^4.4.9"
},
"peerDependencies": {
"astro": "workspace:^3.3.3",
"astro": "workspace:^3.3.4",
"tailwindcss": "^3.0.24"
},
"publishConfig": {

View file

@ -1,5 +1,27 @@
# @astrojs/vercel
## 5.1.0
### Minor Changes
- [#8867](https://github.com/withastro/astro/pull/8867) [`b209e5335`](https://github.com/withastro/astro/commit/b209e533584521c55f88b929f28ea9d5189045f9) Thanks [@lilnasy](https://github.com/lilnasy)! - You can now configure how long your functions can run before timing out.
```diff
export default defineConfig({
output: "server",
adapter: vercel({
+ maxDuration: 60
}),
});
```
### Patch Changes
- [#8896](https://github.com/withastro/astro/pull/8896) [`5dd1ed50b`](https://github.com/withastro/astro/commit/5dd1ed50b2f9428946b0b273e0ce8f13c19aa3b5) Thanks [@bluwy](https://github.com/bluwy)! - Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode
- Updated dependencies [[`26b77b8fe`](https://github.com/withastro/astro/commit/26b77b8fef0e03bfc5550aecaa1f56a4fc1cd297)]:
- astro@3.3.4
## 5.0.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "5.0.2",
"version": "5.1.0",
"type": "module",
"author": "withastro",
"license": "MIT",
@ -61,7 +61,7 @@
"web-vitals": "^3.4.0"
},
"peerDependencies": {
"astro": "workspace:^3.3.3"
"astro": "workspace:^3.3.4"
},
"devDependencies": {
"@types/set-cookie-parser": "^2.4.3",

View file

@ -56,7 +56,7 @@
"vue": "^3.3.4"
},
"peerDependencies": {
"astro": "workspace:^3.3.3",
"astro": "workspace:^3.3.4",
"vue": "^3.2.30"
},
"engines": {

View file

@ -1,5 +1,13 @@
# @astrojs/telemetry
## 3.0.4
### Patch Changes
- [#8900](https://github.com/withastro/astro/pull/8900) [`341ef6578`](https://github.com/withastro/astro/commit/341ef6578528a00f89bf6da5e4243b0fde272816) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Track if the Astro CLI is running in a [`TTY`](nodejs.org/api/process.html#a-note-on-process-io) context.
This information helps us better understand scripted use of Astro vs. direct terminal use of Astro CLI by a user, especially the `astro dev` command.
## 3.0.3
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/telemetry",
"version": "3.0.3",
"version": "3.0.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -125,13 +125,13 @@ importers:
examples/basics:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
specifier: ^1.1.2
specifier: ^1.1.3
version: link:../../packages/integrations/mdx
'@astrojs/rss':
specifier: ^3.0.0
@ -140,13 +140,13 @@ importers:
specifier: ^3.0.2
version: link:../../packages/integrations/sitemap
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/framework-alpine:
@ -161,7 +161,7 @@ importers:
specifier: ^3.12.3
version: 3.12.3
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/framework-lit:
@ -173,7 +173,7 @@ importers:
specifier: ^0.2.1
version: 0.2.1
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
lit:
specifier: ^2.8.0
@ -185,7 +185,7 @@ importers:
specifier: ^3.0.1
version: link:../../packages/integrations/preact
'@astrojs/react':
specifier: ^3.0.3
specifier: ^3.0.4
version: link:../../packages/integrations/react
'@astrojs/solid-js':
specifier: ^3.0.2
@ -197,7 +197,7 @@ importers:
specifier: ^3.0.2
version: link:../../packages/integrations/vue
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
preact:
specifier: ^10.17.1
@ -227,7 +227,7 @@ importers:
specifier: ^1.2.1
version: 1.2.1(preact@10.17.1)
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
preact:
specifier: ^10.17.1
@ -236,7 +236,7 @@ importers:
examples/framework-react:
dependencies:
'@astrojs/react':
specifier: ^3.0.3
specifier: ^3.0.4
version: link:../../packages/integrations/react
'@types/react':
specifier: ^18.2.21
@ -245,7 +245,7 @@ importers:
specifier: ^18.2.7
version: 18.2.7
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
react:
specifier: ^18.2.0
@ -260,7 +260,7 @@ importers:
specifier: ^3.0.2
version: link:../../packages/integrations/solid
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
solid-js:
specifier: ^1.7.11
@ -272,7 +272,7 @@ importers:
specifier: ^4.0.3
version: link:../../packages/integrations/svelte
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
svelte:
specifier: ^4.2.0
@ -284,7 +284,7 @@ importers:
specifier: ^3.0.2
version: link:../../packages/integrations/vue
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
vue:
specifier: ^3.3.4
@ -296,13 +296,13 @@ importers:
specifier: ^6.0.3
version: link:../../packages/integrations/node
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/middleware:
@ -311,7 +311,7 @@ importers:
specifier: ^6.0.3
version: link:../../packages/integrations/node
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
html-minifier:
specifier: ^4.0.0
@ -320,19 +320,19 @@ importers:
examples/minimal:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/non-html-pages:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/ssr:
@ -344,7 +344,7 @@ importers:
specifier: ^4.0.3
version: link:../../packages/integrations/svelte
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
svelte:
specifier: ^4.2.0
@ -359,16 +359,16 @@ importers:
specifier: ^5.0.2
version: link:../../packages/integrations/tailwind
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
specifier: ^0.6.0
specifier: ^0.7.0
version: link:../../packages/integrations/markdoc
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/with-markdown-plugins:
@ -377,7 +377,7 @@ importers:
specifier: ^3.3.0
version: link:../../packages/markdown/remark
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
hast-util-select:
specifier: ^5.0.5
@ -398,19 +398,19 @@ importers:
examples/with-markdown-shiki:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
specifier: ^1.1.2
specifier: ^1.1.3
version: link:../../packages/integrations/mdx
'@astrojs/preact':
specifier: ^3.0.1
version: link:../../packages/integrations/preact
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
preact:
specifier: ^10.17.1
@ -425,7 +425,7 @@ importers:
specifier: ^0.5.0
version: 0.5.0(nanostores@0.9.3)(preact@10.17.1)
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
nanostores:
specifier: ^0.9.3
@ -437,7 +437,7 @@ importers:
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
specifier: ^1.1.2
specifier: ^1.1.3
version: link:../../packages/integrations/mdx
'@astrojs/tailwind':
specifier: ^5.0.2
@ -446,7 +446,7 @@ importers:
specifier: ^1.6.0
version: 1.6.0
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.15
@ -464,7 +464,7 @@ importers:
examples/with-vite-plugin-pwa:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
vite-plugin-pwa:
specifier: 0.16.4
@ -476,7 +476,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
specifier: ^3.3.3
specifier: ^3.3.4
version: link:../../packages/astro
vitest:
specifier: ^0.34.2