[ci] release (#3615)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
This commit is contained in:
github-actions[bot] 2022-06-21 09:43:19 -04:00 committed by GitHub
parent 948f82048b
commit e67171252c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 161 additions and 172 deletions

View file

@ -1,11 +0,0 @@
---
'astro': patch
---
Significantly improved build performance
This change reflects in a significantly improved build performance, especially on larger sites.
With this change Astro is not building everything by statically analyzing `.astro` files. This means it no longer needs to dynamically *run* your code in order to know what JavaScript needs to be built.
With one particular large site we found it to build __32%__ faster.

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdown-remark': patch
---
Fix: HTML comments in markdown code blocks should not be wrapped in JS comments

View file

@ -1,7 +0,0 @@
---
'astro': patch
'@astrojs/netlify': patch
'@astrojs/markdown-remark': patch
---
Fix: "vpath" import error when building for netlify edge

View file

@ -1,7 +0,0 @@
---
'@astrojs/telemetry': patch
---
Fix telemetry crashing astro build/dev when using optional integrations
Telemetry will now ignore falsy integration values but will gather a count of how many integrations out of the total are now optional integrations

View file

@ -1,5 +0,0 @@
---
'@astrojs/telemetry': patch
---
Add's optional integrations field to `@astrojs/telemetry`'s payload

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Properly catch falsy components

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add component hydration in Markdown E2E tests

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdown-remark': patch
---
Encodes ampersand characters in code blocks

View file

@ -1,18 +0,0 @@
---
'@astrojs/sitemap': minor
---
# Key features
- Split up your large sitemap into multiple sitemaps by custom limit.
- Ability to add sitemap specific attributes such as `lastmod` etc.
- Final output customization via JS function.
- Localization support.
- Reliability: all config options are validated.
## Important changes
The integration always generates at least two files instead of one:
- `sitemap-index.xml` - index file;
- `sitemap-{i}.xml` - actual sitemap.

View file

@ -1,9 +0,0 @@
---
'@astrojs/lit': minor
---
Conform to Constructor based rendering
This changes `@astrojs/lit` to conform to the way rendering happens in all other frameworks. Instead of using the tag name `<my-element client:load>` you use the imported constructor function, `<MyElement client:load>` like you would do with any other framework.
Support for `tag-name` syntax had to be removed due to the fact that it was a runtime feature that was not statically analyzable. To improve build performance, we have removed all runtime based component discovery. Using the imported Constructor name allows Astro to discover what components need to be built and bundled for production without ever running your file.

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/markdown-remark': patch
---
Remove extra newlines around Markdown components

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"sass": "^1.52.2"
},
"dependencies": {

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"preact": "^10.7.3"

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@example/my-component": "workspace:*",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -8,6 +8,6 @@
"serve": "astro --root demo preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -20,6 +20,6 @@
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"alpinejs": "^3.10.2"

View file

@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/lit": "^0.1.5",
"astro": "^1.0.0-beta.47"
"@astrojs/lit": "^0.2.0",
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",

View file

@ -9,13 +9,13 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/lit": "^0.1.5",
"@astrojs/lit": "^0.2.0",
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
"@astrojs/solid-js": "^0.1.4",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"preact": "^10.7.3"

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.3",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"@types/react": "^18.0.10",

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/solid-js": "^0.1.4",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"solid-js": "^1.4.3"

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/svelte": "^0.1.4",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"svelte": "^3.48.0"

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/vue": "^0.1.5",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"vue": "^3.2.36"

View file

@ -9,14 +9,14 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/lit": "^0.1.5",
"@astrojs/lit": "^0.2.0",
"@astrojs/partytown": "^0.1.4",
"@astrojs/react": "^0.1.3",
"@astrojs/sitemap": "^0.1.2",
"@astrojs/sitemap": "^0.2.0",
"@astrojs/solid-js": "0.1.4",
"@astrojs/tailwind": "^0.2.1",
"@astrojs/turbolinks": "^0.1.3",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"solid-js": "^1.4.3"
},
"dependencies": {

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"sass": "^1.52.2"
},
"dependencies": {

View file

@ -11,7 +11,7 @@
"devDependencies": {
"@astrojs/node": "^0.1.2",
"@astrojs/svelte": "^0.1.4",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"concurrently": "^7.2.1",
"lightcookie": "^1.0.25",
"unocss": "^0.15.6",

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.3",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"sass": "^1.52.2"
},
"dependencies": {

View file

@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/markdown-remark": "^0.11.2",
"astro": "^1.0.0-beta.47",
"@astrojs/markdown-remark": "^0.11.3",
"astro": "^1.0.0-beta.48",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/markdown-remark": "^0.11.2",
"astro": "^1.0.0-beta.47"
"@astrojs/markdown-remark": "^0.11.3",
"astro": "^1.0.0-beta.48"
}
}

View file

@ -9,12 +9,12 @@
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/markdown-remark": "^0.11.2",
"@astrojs/markdown-remark": "^0.11.3",
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
},
"dependencies": {
"preact": "^10.7.3",

View file

@ -25,6 +25,6 @@
"@astrojs/solid-js": "^0.1.4",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
"astro": "^1.0.0-beta.47"
"astro": "^1.0.0-beta.48"
}
}

View file

@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/tailwind": "^0.2.1",
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^1.0.0-beta.47",
"astro": "^1.0.0-beta.48",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}

View file

@ -1,5 +1,29 @@
# astro
## 1.0.0-beta.48
### Patch Changes
- [#3625](https://github.com/withastro/astro/pull/3625) [`f5afaf24`](https://github.com/withastro/astro/commit/f5afaf24984ee7d4d6e908a7eeed17f5ca18c61e) Thanks [@matthewp](https://github.com/matthewp)! - Significantly improved build performance
This change reflects in a significantly improved build performance, especially on larger sites.
With this change Astro is not building everything by statically analyzing `.astro` files. This means it no longer needs to dynamically _run_ your code in order to know what JavaScript needs to be built.
With one particular large site we found it to build **32%** faster.
* [#3612](https://github.com/withastro/astro/pull/3612) [`fca58cfd`](https://github.com/withastro/astro/commit/fca58cfd91b68501ec82350ab023170b208d8ce7) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: "vpath" import error when building for netlify edge
- [#3650](https://github.com/withastro/astro/pull/3650) [`d9f6dcf6`](https://github.com/withastro/astro/commit/d9f6dcf6ea05f78a33606509de0714f8b0625f96) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Properly catch falsy components
* [#3610](https://github.com/withastro/astro/pull/3610) [`6ab749be`](https://github.com/withastro/astro/commit/6ab749be5c60c4b57aae8a0ba6083d010fe3b791) Thanks [@hippotastic](https://github.com/hippotastic)! - Add component hydration in Markdown E2E tests
- [#3620](https://github.com/withastro/astro/pull/3620) [`05aa7244`](https://github.com/withastro/astro/commit/05aa72442cd4512b94abdb39623e8caa2c1839b0) Thanks [@hippotastic](https://github.com/hippotastic)! - Remove extra newlines around Markdown components
- Updated dependencies [[`80c71c7c`](https://github.com/withastro/astro/commit/80c71c7c56d15dc05ec0c5a848130aad222d7d51), [`fca58cfd`](https://github.com/withastro/astro/commit/fca58cfd91b68501ec82350ab023170b208d8ce7), [`9c8a7c0b`](https://github.com/withastro/astro/commit/9c8a7c0b09db2fb6925929d4efe01d5ececbf08e), [`9c8a7c0b`](https://github.com/withastro/astro/commit/9c8a7c0b09db2fb6925929d4efe01d5ececbf08e), [`48e67fe0`](https://github.com/withastro/astro/commit/48e67fe05398dc4b1fca12db36c1b37bb341277a), [`05aa7244`](https://github.com/withastro/astro/commit/05aa72442cd4512b94abdb39623e8caa2c1839b0)]:
- @astrojs/markdown-remark@0.11.3
- @astrojs/telemetry@0.1.3
## 1.0.0-beta.47
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "1.0.0-beta.47",
"version": "1.0.0-beta.48",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@ -80,9 +80,9 @@
"dependencies": {
"@astrojs/compiler": "^0.16.1",
"@astrojs/language-server": "^0.13.4",
"@astrojs/markdown-remark": "^0.11.2",
"@astrojs/markdown-remark": "^0.11.3",
"@astrojs/prism": "0.4.1",
"@astrojs/telemetry": "^0.1.2",
"@astrojs/telemetry": "^0.1.3",
"@astrojs/webapi": "^0.12.0",
"@babel/core": "^7.18.2",
"@babel/generator": "^7.18.2",

View file

@ -1,5 +1,15 @@
# @astrojs/lit
## 0.2.0
### Minor Changes
- [#3625](https://github.com/withastro/astro/pull/3625) [`f5afaf24`](https://github.com/withastro/astro/commit/f5afaf24984ee7d4d6e908a7eeed17f5ca18c61e) Thanks [@matthewp](https://github.com/matthewp)! - Conform to Constructor based rendering
This changes `@astrojs/lit` to conform to the way rendering happens in all other frameworks. Instead of using the tag name `<my-element client:load>` you use the imported constructor function, `<MyElement client:load>` like you would do with any other framework.
Support for `tag-name` syntax had to be removed due to the fact that it was a runtime feature that was not statically analyzable. To improve build performance, we have removed all runtime based component discovery. Using the imported Constructor name allows Astro to discover what components need to be built and bundled for production without ever running your file.
## 0.1.5
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/lit",
"version": "0.1.5",
"version": "0.2.0",
"description": "Use Lit components within Astro",
"type": "module",
"types": "./dist/index.d.ts",

View file

@ -1,5 +1,11 @@
# @astrojs/netlify
## 0.4.5
### Patch Changes
- [#3612](https://github.com/withastro/astro/pull/3612) [`fca58cfd`](https://github.com/withastro/astro/commit/fca58cfd91b68501ec82350ab023170b208d8ce7) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: "vpath" import error when building for netlify edge
## 0.4.4
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
"version": "0.4.4",
"version": "0.4.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,24 @@
# @astrojs/sitemap
## 0.2.0
### Minor Changes
- [#3579](https://github.com/withastro/astro/pull/3579) [`1031c06f`](https://github.com/withastro/astro/commit/1031c06f9c6794d9ee6fb18c145ca5614e6f0583) Thanks [@alextim](https://github.com/alextim)! - # Key features
- Split up your large sitemap into multiple sitemaps by custom limit.
- Ability to add sitemap specific attributes such as `lastmod` etc.
- Final output customization via JS function.
- Localization support.
- Reliability: all config options are validated.
## Important changes
The integration always generates at least two files instead of one:
- `sitemap-index.xml` - index file;
- `sitemap-{i}.xml` - actual sitemap.
## 0.1.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for Astro",
"version": "0.1.2",
"version": "0.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",

View file

@ -1,5 +1,17 @@
# @astrojs/markdown-remark
## 0.11.3
### Patch Changes
- [#3638](https://github.com/withastro/astro/pull/3638) [`80c71c7c`](https://github.com/withastro/astro/commit/80c71c7c56d15dc05ec0c5a848130aad222d7d51) Thanks [@tony-sull](https://github.com/tony-sull)! - Fix: HTML comments in markdown code blocks should not be wrapped in JS comments
* [#3612](https://github.com/withastro/astro/pull/3612) [`fca58cfd`](https://github.com/withastro/astro/commit/fca58cfd91b68501ec82350ab023170b208d8ce7) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: "vpath" import error when building for netlify edge
- [#3630](https://github.com/withastro/astro/pull/3630) [`48e67fe0`](https://github.com/withastro/astro/commit/48e67fe05398dc4b1fca12db36c1b37bb341277a) Thanks [@tony-sull](https://github.com/tony-sull)! - Encodes ampersand characters in code blocks
* [#3620](https://github.com/withastro/astro/pull/3620) [`05aa7244`](https://github.com/withastro/astro/commit/05aa72442cd4512b94abdb39623e8caa2c1839b0) Thanks [@hippotastic](https://github.com/hippotastic)! - Remove extra newlines around Markdown components
## 0.11.2
### Patch Changes

View file

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

View file

@ -1,5 +1,15 @@
# @astrojs/telemetry
## 0.1.3
### Patch Changes
- [#3614](https://github.com/withastro/astro/pull/3614) [`9c8a7c0b`](https://github.com/withastro/astro/commit/9c8a7c0b09db2fb6925929d4efe01d5ececbf08e) Thanks [@okikio](https://github.com/okikio)! - Fix telemetry crashing astro build/dev when using optional integrations
Telemetry will now ignore falsy integration values but will gather a count of how many integrations out of the total are now optional integrations
* [#3614](https://github.com/withastro/astro/pull/3614) [`9c8a7c0b`](https://github.com/withastro/astro/commit/9c8a7c0b09db2fb6925929d4efe01d5ececbf08e) Thanks [@okikio](https://github.com/okikio)! - Add's optional integrations field to `@astrojs/telemetry`'s payload
## 0.1.2
### Patch Changes

View file

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

View file

@ -47,14 +47,14 @@ importers:
examples/basics:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
'@astrojs/preact': ^0.1.3
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
dependencies:
preact: 10.7.3
@ -65,7 +65,7 @@ importers:
examples/blog-multiple-authors:
specifiers:
'@astrojs/preact': ^0.1.3
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
sass: ^1.52.2
dependencies:
@ -77,14 +77,14 @@ importers:
examples/component:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/component/demo:
specifiers:
'@example/my-component': workspace:*
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
'@example/my-component': link:../packages/my-component
astro: link:../../../packages/astro
@ -100,7 +100,7 @@ importers:
'@docsearch/css': ^3.1.0
'@docsearch/react': ^3.1.0
'@types/react': ^17.0.45
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
react: ^17.0.2
react-dom: ^17.0.2
@ -119,14 +119,14 @@ importers:
examples/env-vars:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/framework-alpine:
specifiers:
alpinejs: ^3.10.2
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
dependencies:
alpinejs: 3.10.2
devDependencies:
@ -134,9 +134,9 @@ importers:
examples/framework-lit:
specifiers:
'@astrojs/lit': ^0.1.5
'@astrojs/lit': ^0.2.0
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
lit: ^2.2.5
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
@ -147,14 +147,14 @@ importers:
examples/framework-multiple:
specifiers:
'@astrojs/lit': ^0.1.5
'@astrojs/lit': ^0.2.0
'@astrojs/preact': ^0.1.3
'@astrojs/react': ^0.1.3
'@astrojs/solid-js': ^0.1.4
'@astrojs/svelte': ^0.1.4
'@astrojs/vue': ^0.1.5
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
lit: ^2.2.5
preact: ^10.7.3
react: ^18.1.0
@ -183,7 +183,7 @@ importers:
examples/framework-preact:
specifiers:
'@astrojs/preact': ^0.1.3
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
dependencies:
preact: 10.7.3
@ -196,7 +196,7 @@ importers:
'@astrojs/react': ^0.1.3
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@ -211,7 +211,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^0.1.4
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
solid-js: ^1.4.3
dependencies:
solid-js: 1.4.3
@ -222,7 +222,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^0.1.4
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
svelte: ^3.48.0
dependencies:
svelte: 3.48.0
@ -233,7 +233,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^0.1.5
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
vue: ^3.2.36
dependencies:
vue: 3.2.37
@ -243,15 +243,15 @@ importers:
examples/integrations-playground:
specifiers:
'@astrojs/lit': ^0.1.5
'@astrojs/lit': ^0.2.0
'@astrojs/partytown': ^0.1.4
'@astrojs/react': ^0.1.3
'@astrojs/sitemap': ^0.1.2
'@astrojs/sitemap': ^0.2.0
'@astrojs/solid-js': 0.1.4
'@astrojs/tailwind': ^0.2.1
'@astrojs/turbolinks': ^0.1.3
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
lit: ^2.2.5
preact: ^10.7.3
react: ^18.1.0
@ -280,20 +280,20 @@ importers:
examples/minimal:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
'@astrojs/preact': ^0.1.3
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
sass: ^1.52.2
dependencies:
@ -307,7 +307,7 @@ importers:
specifiers:
'@astrojs/node': ^0.1.2
'@astrojs/svelte': ^0.1.4
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
concurrently: ^7.2.1
lightcookie: ^1.0.25
svelte: ^3.48.0
@ -326,14 +326,14 @@ importers:
examples/starter:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
devDependencies:
astro: link:../../packages/astro
examples/subpath:
specifiers:
'@astrojs/react': ^0.1.3
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
react: ^18.1.0
react-dom: ^18.1.0
sass: ^1.52.2
@ -347,12 +347,12 @@ importers:
examples/with-markdown:
specifiers:
'@astrojs/markdown-remark': ^0.11.2
'@astrojs/markdown-remark': ^0.11.3
'@astrojs/preact': ^0.1.3
'@astrojs/react': ^0.1.3
'@astrojs/svelte': ^0.1.4
'@astrojs/vue': ^0.1.5
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@ -374,8 +374,8 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^0.11.2
astro: ^1.0.0-beta.47
'@astrojs/markdown-remark': ^0.11.3
astro: ^1.0.0-beta.48
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@ -392,8 +392,8 @@ importers:
examples/with-markdown-shiki:
specifiers:
'@astrojs/markdown-remark': ^0.11.2
astro: ^1.0.0-beta.47
'@astrojs/markdown-remark': ^0.11.3
astro: ^1.0.0-beta.48
devDependencies:
'@astrojs/markdown-remark': link:../../packages/markdown/remark
astro: link:../../packages/astro
@ -408,7 +408,7 @@ importers:
'@nanostores/preact': ^0.1.3
'@nanostores/react': ^0.1.5
'@nanostores/vue': ^0.4.1
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
nanostores: ^0.5.12
preact: ^10.7.3
react: ^18.1.0
@ -436,7 +436,7 @@ importers:
examples/with-tailwindcss:
specifiers:
'@astrojs/tailwind': ^0.2.1
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@ -451,7 +451,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
astro: ^1.0.0-beta.47
astro: ^1.0.0-beta.48
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
devDependencies:
@ -463,9 +463,9 @@ importers:
specifiers:
'@astrojs/compiler': ^0.16.1
'@astrojs/language-server': ^0.13.4
'@astrojs/markdown-remark': ^0.11.2
'@astrojs/markdown-remark': ^0.11.3
'@astrojs/prism': 0.4.1
'@astrojs/telemetry': ^0.1.2
'@astrojs/telemetry': ^0.1.3
'@astrojs/webapi': ^0.12.0
'@babel/core': ^7.18.2
'@babel/generator': ^7.18.2
@ -8188,11 +8188,6 @@ packages:
/debug/3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
ms: 2.1.3
dev: false
@ -11109,8 +11104,6 @@ packages:
debug: 3.2.7
iconv-lite: 0.4.24
sax: 1.2.4
transitivePeerDependencies:
- supports-color
dev: false
/netmask/2.0.2:
@ -11194,8 +11187,6 @@ packages:
rimraf: 2.7.1
semver: 5.7.1
tar: 4.4.19
transitivePeerDependencies:
- supports-color
dev: false
/node-releases/2.0.5: