[ci] release (#3334)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
4ac792a02d
commit
cedb9a2105
58 changed files with 171 additions and 196 deletions
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix for APIRoute type
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Improve error hints for packages that should be added to `vite.ssr.noExternal`
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/netlify': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
create redirects file for netlify edge adapter
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Update default `vite.optimizeDeps.exclude` to keep `node-fetch` from being optimized
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes HMR of hoisted script tags
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes an issue preventing custom 404 pages in dev
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fixes injectscript in ssr mode
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"astro": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix an `import from '../core/build/types';` error
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix for swallowed SolidJS errors
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Resolve .astro components by module ID to support the use of Astro + framework components in an NPM package
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Export `ViteUserConfig` type
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
'astro': patch
|
|
||||||
'@astrojs/react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix: remove hydration failures on React v18 by exposing the "client" directive from Astro core.
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'create-astro': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Update "next steps" with more informative text on each CLI command. Oh, and gradients. A lot more gradients.
|
|
|
@ -1,20 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/vercel': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
**[BREAKING]** Now with Build Output API (v3)! [See the README to get started](https://github.com/withastro/astro/tree/main/packages/integrations/vercel#readme).
|
|
||||||
|
|
||||||
- `trailingSlash` redirects works without a `vercel.json` file: just configure them inside your `astro.config.mjs`
|
|
||||||
- Multiple deploy targets: `edge`, `serverless` and `static`!
|
|
||||||
- When building to `serverless`, your code isn't transpiled to CJS anymore.
|
|
||||||
|
|
||||||
**Migrate from v0.1**
|
|
||||||
|
|
||||||
1. Change the import inside `astro.config.mjs`:
|
|
||||||
```diff
|
|
||||||
- import vercel from '@astrojs/vercel';
|
|
||||||
+ import vercel from '@astrojs/vercel/serverless';
|
|
||||||
```
|
|
||||||
2. Rename the `ENABLE_FILE_SYSTEM_API` environment variable to `ENABLE_VC_BUILD`, as Vercel changed it.
|
|
||||||
3. The output folder changed from `.output` to `.vercel/output` — you may need to update your `.gitignore`.
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
'@astrojs/svelte': patch
|
|
||||||
'@astrojs/vue': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix a vite peer dependency bug
|
|
|
@ -9,6 +9,6 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"sass": "^1.51.0"
|
"sass": "^1.51.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"preact": "^10.7.2"
|
"preact": "^10.7.2"
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@example/my-component": "workspace:*",
|
"@example/my-component": "workspace:*",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
"serve": "astro --root demo preview"
|
"serve": "astro --root demo preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"alpinejs": "^3.10.2"
|
"alpinejs": "^3.10.2"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/lit": "^0.1.2",
|
"@astrojs/lit": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@webcomponents/template-shadowroot": "^0.1.0",
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/lit": "^0.1.2",
|
"@astrojs/lit": "^0.1.2",
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"@astrojs/solid-js": "^0.1.2",
|
"@astrojs/solid-js": "^0.1.2",
|
||||||
"@astrojs/svelte": "^0.1.2",
|
"@astrojs/svelte": "^0.1.3",
|
||||||
"@astrojs/vue": "^0.1.3",
|
"@astrojs/vue": "^0.1.4",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@webcomponents/template-shadowroot": "^0.1.0",
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"preact": "^10.7.2"
|
"preact": "^10.7.2"
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/react": "^18.0.9",
|
"@types/react": "^18.0.9",
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/solid-js": "^0.1.2",
|
"@astrojs/solid-js": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"solid-js": "^1.3.17"
|
"solid-js": "^1.3.17"
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/svelte": "^0.1.2",
|
"@astrojs/svelte": "^0.1.3",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"svelte": "^3.48.0"
|
"svelte": "^3.48.0"
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/vue": "^0.1.3",
|
"@astrojs/vue": "^0.1.4",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.2.33"
|
"vue": "^3.2.33"
|
||||||
|
|
|
@ -11,12 +11,12 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/lit": "^0.1.2",
|
"@astrojs/lit": "^0.1.2",
|
||||||
"@astrojs/partytown": "^0.1.2",
|
"@astrojs/partytown": "^0.1.2",
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"@astrojs/sitemap": "^0.1.0",
|
"@astrojs/sitemap": "^0.1.0",
|
||||||
"@astrojs/solid-js": "0.1.2",
|
"@astrojs/solid-js": "0.1.2",
|
||||||
"@astrojs/tailwind": "^0.2.1",
|
"@astrojs/tailwind": "^0.2.1",
|
||||||
"@astrojs/turbolinks": "^0.1.2",
|
"@astrojs/turbolinks": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"solid-js": "^1.3.17"
|
"solid-js": "^1.3.17"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"sass": "^1.51.0"
|
"sass": "^1.51.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/node": "^0.1.1",
|
"@astrojs/node": "^0.1.1",
|
||||||
"@astrojs/svelte": "^0.1.2",
|
"@astrojs/svelte": "^0.1.3",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"concurrently": "^7.1.0",
|
"concurrently": "^7.1.0",
|
||||||
"lightcookie": "^1.0.25",
|
"lightcookie": "^1.0.25",
|
||||||
"unocss": "^0.15.6",
|
"unocss": "^0.15.6",
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"sass": "^1.51.0"
|
"sass": "^1.51.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/markdown-remark": "^0.9.4",
|
"@astrojs/markdown-remark": "^0.9.4",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"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",
|
||||||
|
|
|
@ -10,6 +10,6 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/markdown-remark": "^0.9.4",
|
"@astrojs/markdown-remark": "^0.9.4",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/markdown-remark": "^0.9.4",
|
"@astrojs/markdown-remark": "^0.9.4",
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"@astrojs/svelte": "^0.1.2",
|
"@astrojs/svelte": "^0.1.3",
|
||||||
"@astrojs/vue": "^0.1.3",
|
"@astrojs/vue": "^0.1.4",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"preact": "^10.7.2",
|
"preact": "^10.7.2",
|
||||||
|
|
|
@ -21,10 +21,10 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/preact": "^0.1.2",
|
"@astrojs/preact": "^0.1.2",
|
||||||
"@astrojs/react": "^0.1.1",
|
"@astrojs/react": "^0.1.2",
|
||||||
"@astrojs/solid-js": "^0.1.2",
|
"@astrojs/solid-js": "^0.1.2",
|
||||||
"@astrojs/svelte": "^0.1.2",
|
"@astrojs/svelte": "^0.1.3",
|
||||||
"@astrojs/vue": "^0.1.3",
|
"@astrojs/vue": "^0.1.4",
|
||||||
"astro": "^1.0.0-beta.27"
|
"astro": "^1.0.0-beta.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/tailwind": "^0.2.1",
|
"@astrojs/tailwind": "^0.2.1",
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.7",
|
||||||
"canvas-confetti": "^1.5.1",
|
"canvas-confetti": "^1.5.1",
|
||||||
"postcss": "^8.4.13",
|
"postcss": "^8.4.13",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"preview": "astro preview"
|
"preview": "astro preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^1.0.0-beta.27",
|
"astro": "^1.0.0-beta.28",
|
||||||
"vite-plugin-pwa": "0.11.11",
|
"vite-plugin-pwa": "0.11.11",
|
||||||
"workbox-window": "^6.5.3"
|
"workbox-window": "^6.5.3"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,31 @@
|
||||||
# astro
|
# astro
|
||||||
|
|
||||||
|
## 1.0.0-beta.28
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3344](https://github.com/withastro/astro/pull/3344) [`46cd8b9e`](https://github.com/withastro/astro/commit/46cd8b9eb4c5e9b526a6cba288070630b8dcbbf5) Thanks [@matthewp](https://github.com/matthewp)! - Fix for APIRoute type
|
||||||
|
|
||||||
|
* [#3350](https://github.com/withastro/astro/pull/3350) [`e48aa2fd`](https://github.com/withastro/astro/commit/e48aa2fd1ee4a3637647990182e1f3aa9384e259) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Improve error hints for packages that should be added to `vite.ssr.noExternal`
|
||||||
|
|
||||||
|
- [#3348](https://github.com/withastro/astro/pull/3348) [`43e411ee`](https://github.com/withastro/astro/commit/43e411eed8308015d517de9a0d1e036dc06d34a0) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update default `vite.optimizeDeps.exclude` to keep `node-fetch` from being optimized
|
||||||
|
|
||||||
|
* [#3336](https://github.com/withastro/astro/pull/3336) [`ccea6a0a`](https://github.com/withastro/astro/commit/ccea6a0a1ae55ab057d94f60014e2183013b5f60) Thanks [@matthewp](https://github.com/matthewp)! - Fixes HMR of hoisted script tags
|
||||||
|
|
||||||
|
- [#3331](https://github.com/withastro/astro/pull/3331) [`e22f7364`](https://github.com/withastro/astro/commit/e22f7364ceb3e4b057d89bbb32111bcffb7ae967) Thanks [@tony-sull](https://github.com/tony-sull)! - Fixes an issue preventing custom 404 pages in dev
|
||||||
|
|
||||||
|
* [#3339](https://github.com/withastro/astro/pull/3339) [`3dc68e14`](https://github.com/withastro/astro/commit/3dc68e148e05a36694cb5759f44cc5349bd66294) Thanks [@thepassle](https://github.com/thepassle)! - fixes injectscript in ssr mode
|
||||||
|
|
||||||
|
- [#3332](https://github.com/withastro/astro/pull/3332) [`d04928e8`](https://github.com/withastro/astro/commit/d04928e8f20435cf69d1c171523aa152601cfe21) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix an `import from '../core/build/types';` error
|
||||||
|
|
||||||
|
* [`f40705d9`](https://github.com/withastro/astro/commit/f40705d906951a2ac16a89290bcadd597fe4cbeb) Thanks [@matthewp](https://github.com/matthewp)! - Fix for swallowed SolidJS errors
|
||||||
|
|
||||||
|
- [#3300](https://github.com/withastro/astro/pull/3300) [`b463ddb3`](https://github.com/withastro/astro/commit/b463ddb3ce43641536dee4413ac5bb8ebcbdf608) Thanks [@tony-sull](https://github.com/tony-sull)! - Resolve .astro components by module ID to support the use of Astro + framework components in an NPM package
|
||||||
|
|
||||||
|
* [#3352](https://github.com/withastro/astro/pull/3352) [`86855061`](https://github.com/withastro/astro/commit/8685506174962329fb7a76367ea3cf32ea0aa48c) Thanks [@JuanM04](https://github.com/JuanM04)! - Export `ViteUserConfig` type
|
||||||
|
|
||||||
|
- [#3337](https://github.com/withastro/astro/pull/3337) [`678c2b75`](https://github.com/withastro/astro/commit/678c2b7523c7f10cfdf2eb5a73aa2bbb7e5cbc07) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: remove hydration failures on React v18 by exposing the "client" directive from Astro core.
|
||||||
|
|
||||||
## 1.0.0-beta.27
|
## 1.0.0-beta.27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "astro",
|
"name": "astro",
|
||||||
"version": "1.0.0-beta.27",
|
"version": "1.0.0-beta.28",
|
||||||
"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",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# create-astro
|
# create-astro
|
||||||
|
|
||||||
|
## 0.12.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3313](https://github.com/withastro/astro/pull/3313) [`1a5335ed`](https://github.com/withastro/astro/commit/1a5335ed9abaef397ee9543a3b4ad7a3fddcf024) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Update "next steps" with more informative text on each CLI command. Oh, and gradients. A lot more gradients.
|
||||||
|
|
||||||
## 0.12.0
|
## 0.12.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "create-astro",
|
"name": "create-astro",
|
||||||
"version": "0.12.0",
|
"version": "0.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# @astrojs/netlify
|
# @astrojs/netlify
|
||||||
|
|
||||||
|
## 0.3.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3342](https://github.com/withastro/astro/pull/3342) [`352fc316`](https://github.com/withastro/astro/commit/352fc3166fe3b3d3da3feff621394b20eacb9cc3) Thanks [@thepassle](https://github.com/thepassle)! - create redirects file for netlify edge adapter
|
||||||
|
|
||||||
## 0.3.3
|
## 0.3.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/netlify",
|
"name": "@astrojs/netlify",
|
||||||
"description": "Deploy your site to Netlify",
|
"description": "Deploy your site to Netlify",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# @astrojs/react
|
# @astrojs/react
|
||||||
|
|
||||||
|
## 0.1.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3337](https://github.com/withastro/astro/pull/3337) [`678c2b75`](https://github.com/withastro/astro/commit/678c2b7523c7f10cfdf2eb5a73aa2bbb7e5cbc07) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: remove hydration failures on React v18 by exposing the "client" directive from Astro core.
|
||||||
|
|
||||||
## 0.1.1
|
## 0.1.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/react",
|
"name": "@astrojs/react",
|
||||||
"description": "Use React components within Astro",
|
"description": "Use React components within Astro",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# @astrojs/svelte
|
# @astrojs/svelte
|
||||||
|
|
||||||
|
## 0.1.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3333](https://github.com/withastro/astro/pull/3333) [`ce6d7982`](https://github.com/withastro/astro/commit/ce6d79828250e9a3631778a37d43068cae04bb4f) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a vite peer dependency bug
|
||||||
|
|
||||||
## 0.1.2
|
## 0.1.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/svelte",
|
"name": "@astrojs/svelte",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"description": "Use Svelte components within Astro",
|
"description": "Use Svelte components within Astro",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
|
|
|
@ -1,5 +1,25 @@
|
||||||
# @astrojs/vercel
|
# @astrojs/vercel
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#3216](https://github.com/withastro/astro/pull/3216) [`114bf63e`](https://github.com/withastro/astro/commit/114bf63e11f28299b13178ef1a412eed37ab7909) Thanks [@JuanM04](https://github.com/JuanM04)! - **[BREAKING]** Now with Build Output API (v3)! [See the README to get started](https://github.com/withastro/astro/tree/main/packages/integrations/vercel#readme).
|
||||||
|
|
||||||
|
- `trailingSlash` redirects works without a `vercel.json` file: just configure them inside your `astro.config.mjs`
|
||||||
|
- Multiple deploy targets: `edge`, `serverless` and `static`!
|
||||||
|
- When building to `serverless`, your code isn't transpiled to CJS anymore.
|
||||||
|
|
||||||
|
**Migrate from v0.1**
|
||||||
|
|
||||||
|
1. Change the import inside `astro.config.mjs`:
|
||||||
|
```diff
|
||||||
|
- import vercel from '@astrojs/vercel';
|
||||||
|
+ import vercel from '@astrojs/vercel/serverless';
|
||||||
|
```
|
||||||
|
2. Rename the `ENABLE_FILE_SYSTEM_API` environment variable to `ENABLE_VC_BUILD`, as Vercel changed it.
|
||||||
|
3. The output folder changed from `.output` to `.vercel/output` — you may need to update your `.gitignore`.
|
||||||
|
|
||||||
## 0.1.4
|
## 0.1.4
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/vercel",
|
"name": "@astrojs/vercel",
|
||||||
"description": "Deploy your site to Vercel",
|
"description": "Deploy your site to Vercel",
|
||||||
"version": "0.1.4",
|
"version": "0.2.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# @astrojs/vue
|
# @astrojs/vue
|
||||||
|
|
||||||
|
## 0.1.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#3333](https://github.com/withastro/astro/pull/3333) [`ce6d7982`](https://github.com/withastro/astro/commit/ce6d79828250e9a3631778a37d43068cae04bb4f) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a vite peer dependency bug
|
||||||
|
|
||||||
## 0.1.3
|
## 0.1.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/vue",
|
"name": "@astrojs/vue",
|
||||||
"version": "0.1.3",
|
"version": "0.1.4",
|
||||||
"description": "Use Vue components within Astro",
|
"description": "Use Vue components within Astro",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
|
|
|
@ -45,14 +45,14 @@ importers:
|
||||||
|
|
||||||
examples/basics:
|
examples/basics:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/blog:
|
examples/blog:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
dependencies:
|
dependencies:
|
||||||
preact: 10.7.2
|
preact: 10.7.2
|
||||||
|
@ -63,7 +63,7 @@ importers:
|
||||||
examples/blog-multiple-authors:
|
examples/blog-multiple-authors:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
sass: ^1.51.0
|
sass: ^1.51.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -75,14 +75,14 @@ importers:
|
||||||
|
|
||||||
examples/component:
|
examples/component:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/component/demo:
|
examples/component/demo:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@example/my-component': workspace:*
|
'@example/my-component': workspace:*
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@example/my-component': link:../packages/my-component
|
'@example/my-component': link:../packages/my-component
|
||||||
astro: link:../../../packages/astro
|
astro: link:../../../packages/astro
|
||||||
|
@ -94,11 +94,11 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@algolia/client-search': ^4.13.0
|
'@algolia/client-search': ^4.13.0
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@docsearch/css': ^3.0.0
|
'@docsearch/css': ^3.0.0
|
||||||
'@docsearch/react': ^3.0.0
|
'@docsearch/react': ^3.0.0
|
||||||
'@types/react': ^17.0.45
|
'@types/react': ^17.0.45
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
react: ^17.0.2
|
react: ^17.0.2
|
||||||
react-dom: ^17.0.2
|
react-dom: ^17.0.2
|
||||||
|
@ -117,14 +117,14 @@ importers:
|
||||||
|
|
||||||
examples/env-vars:
|
examples/env-vars:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/framework-alpine:
|
examples/framework-alpine:
|
||||||
specifiers:
|
specifiers:
|
||||||
alpinejs: ^3.10.2
|
alpinejs: ^3.10.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
dependencies:
|
dependencies:
|
||||||
alpinejs: 3.10.2
|
alpinejs: 3.10.2
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
@ -134,7 +134,7 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/lit': ^0.1.2
|
'@astrojs/lit': ^0.1.2
|
||||||
'@webcomponents/template-shadowroot': ^0.1.0
|
'@webcomponents/template-shadowroot': ^0.1.0
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
lit: ^2.2.3
|
lit: ^2.2.3
|
||||||
dependencies:
|
dependencies:
|
||||||
'@webcomponents/template-shadowroot': 0.1.0
|
'@webcomponents/template-shadowroot': 0.1.0
|
||||||
|
@ -147,12 +147,12 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/lit': ^0.1.2
|
'@astrojs/lit': ^0.1.2
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@astrojs/solid-js': ^0.1.2
|
'@astrojs/solid-js': ^0.1.2
|
||||||
'@astrojs/svelte': ^0.1.2
|
'@astrojs/svelte': ^0.1.3
|
||||||
'@astrojs/vue': ^0.1.3
|
'@astrojs/vue': ^0.1.4
|
||||||
'@webcomponents/template-shadowroot': ^0.1.0
|
'@webcomponents/template-shadowroot': ^0.1.0
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
lit: ^2.2.3
|
lit: ^2.2.3
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
|
@ -181,7 +181,7 @@ importers:
|
||||||
examples/framework-preact:
|
examples/framework-preact:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
dependencies:
|
dependencies:
|
||||||
preact: 10.7.2
|
preact: 10.7.2
|
||||||
|
@ -191,10 +191,10 @@ importers:
|
||||||
|
|
||||||
examples/framework-react:
|
examples/framework-react:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@types/react': ^18.0.9
|
'@types/react': ^18.0.9
|
||||||
'@types/react-dom': ^18.0.3
|
'@types/react-dom': ^18.0.3
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
react-dom: ^18.1.0
|
react-dom: ^18.1.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -209,7 +209,7 @@ importers:
|
||||||
examples/framework-solid:
|
examples/framework-solid:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/solid-js': ^0.1.2
|
'@astrojs/solid-js': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
solid-js: ^1.3.17
|
solid-js: ^1.3.17
|
||||||
dependencies:
|
dependencies:
|
||||||
solid-js: 1.3.17
|
solid-js: 1.3.17
|
||||||
|
@ -219,8 +219,8 @@ importers:
|
||||||
|
|
||||||
examples/framework-svelte:
|
examples/framework-svelte:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/svelte': ^0.1.2
|
'@astrojs/svelte': ^0.1.3
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
svelte: ^3.48.0
|
svelte: ^3.48.0
|
||||||
dependencies:
|
dependencies:
|
||||||
svelte: 3.48.0
|
svelte: 3.48.0
|
||||||
|
@ -230,8 +230,8 @@ importers:
|
||||||
|
|
||||||
examples/framework-vue:
|
examples/framework-vue:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/vue': ^0.1.3
|
'@astrojs/vue': ^0.1.4
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
vue: ^3.2.33
|
vue: ^3.2.33
|
||||||
dependencies:
|
dependencies:
|
||||||
vue: 3.2.33
|
vue: 3.2.33
|
||||||
|
@ -243,13 +243,13 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/lit': ^0.1.2
|
'@astrojs/lit': ^0.1.2
|
||||||
'@astrojs/partytown': ^0.1.2
|
'@astrojs/partytown': ^0.1.2
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@astrojs/sitemap': ^0.1.0
|
'@astrojs/sitemap': ^0.1.0
|
||||||
'@astrojs/solid-js': 0.1.2
|
'@astrojs/solid-js': 0.1.2
|
||||||
'@astrojs/tailwind': ^0.2.1
|
'@astrojs/tailwind': ^0.2.1
|
||||||
'@astrojs/turbolinks': ^0.1.2
|
'@astrojs/turbolinks': ^0.1.2
|
||||||
'@webcomponents/template-shadowroot': ^0.1.0
|
'@webcomponents/template-shadowroot': ^0.1.0
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
lit: ^2.2.3
|
lit: ^2.2.3
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
|
@ -278,20 +278,20 @@ importers:
|
||||||
|
|
||||||
examples/minimal:
|
examples/minimal:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/non-html-pages:
|
examples/non-html-pages:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/portfolio:
|
examples/portfolio:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
sass: ^1.51.0
|
sass: ^1.51.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -304,8 +304,8 @@ importers:
|
||||||
examples/ssr:
|
examples/ssr:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/node': ^0.1.1
|
'@astrojs/node': ^0.1.1
|
||||||
'@astrojs/svelte': ^0.1.2
|
'@astrojs/svelte': ^0.1.3
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
concurrently: ^7.1.0
|
concurrently: ^7.1.0
|
||||||
lightcookie: ^1.0.25
|
lightcookie: ^1.0.25
|
||||||
svelte: ^3.48.0
|
svelte: ^3.48.0
|
||||||
|
@ -324,14 +324,14 @@ importers:
|
||||||
|
|
||||||
examples/starter:
|
examples/starter:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
|
||||||
examples/subpath:
|
examples/subpath:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
react-dom: ^18.1.0
|
react-dom: ^18.1.0
|
||||||
sass: ^1.51.0
|
sass: ^1.51.0
|
||||||
|
@ -347,10 +347,10 @@ importers:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/markdown-remark': ^0.9.4
|
'@astrojs/markdown-remark': ^0.9.4
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@astrojs/svelte': ^0.1.2
|
'@astrojs/svelte': ^0.1.3
|
||||||
'@astrojs/vue': ^0.1.3
|
'@astrojs/vue': ^0.1.4
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
react-dom: ^18.1.0
|
react-dom: ^18.1.0
|
||||||
|
@ -373,7 +373,7 @@ importers:
|
||||||
examples/with-markdown-plugins:
|
examples/with-markdown-plugins:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/markdown-remark': ^0.9.4
|
'@astrojs/markdown-remark': ^0.9.4
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
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
|
||||||
|
@ -391,7 +391,7 @@ importers:
|
||||||
examples/with-markdown-shiki:
|
examples/with-markdown-shiki:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/markdown-remark': ^0.9.4
|
'@astrojs/markdown-remark': ^0.9.4
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@astrojs/markdown-remark': link:../../packages/markdown/remark
|
'@astrojs/markdown-remark': link:../../packages/markdown/remark
|
||||||
astro: link:../../packages/astro
|
astro: link:../../packages/astro
|
||||||
|
@ -399,14 +399,14 @@ importers:
|
||||||
examples/with-nanostores:
|
examples/with-nanostores:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/preact': ^0.1.2
|
'@astrojs/preact': ^0.1.2
|
||||||
'@astrojs/react': ^0.1.1
|
'@astrojs/react': ^0.1.2
|
||||||
'@astrojs/solid-js': ^0.1.2
|
'@astrojs/solid-js': ^0.1.2
|
||||||
'@astrojs/svelte': ^0.1.2
|
'@astrojs/svelte': ^0.1.3
|
||||||
'@astrojs/vue': ^0.1.3
|
'@astrojs/vue': ^0.1.4
|
||||||
'@nanostores/preact': ^0.1.3
|
'@nanostores/preact': ^0.1.3
|
||||||
'@nanostores/react': ^0.1.5
|
'@nanostores/react': ^0.1.5
|
||||||
'@nanostores/vue': ^0.4.1
|
'@nanostores/vue': ^0.4.1
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
nanostores: ^0.5.12
|
nanostores: ^0.5.12
|
||||||
preact: ^10.7.2
|
preact: ^10.7.2
|
||||||
react: ^18.1.0
|
react: ^18.1.0
|
||||||
|
@ -434,7 +434,7 @@ importers:
|
||||||
examples/with-tailwindcss:
|
examples/with-tailwindcss:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@astrojs/tailwind': ^0.2.1
|
'@astrojs/tailwind': ^0.2.1
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
autoprefixer: ^10.4.7
|
autoprefixer: ^10.4.7
|
||||||
canvas-confetti: ^1.5.1
|
canvas-confetti: ^1.5.1
|
||||||
postcss: ^8.4.13
|
postcss: ^8.4.13
|
||||||
|
@ -449,7 +449,7 @@ importers:
|
||||||
|
|
||||||
examples/with-vite-plugin-pwa:
|
examples/with-vite-plugin-pwa:
|
||||||
specifiers:
|
specifiers:
|
||||||
astro: ^1.0.0-beta.27
|
astro: ^1.0.0-beta.28
|
||||||
vite-plugin-pwa: 0.11.11
|
vite-plugin-pwa: 0.11.11
|
||||||
workbox-window: ^6.5.3
|
workbox-window: ^6.5.3
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
@ -5487,11 +5487,6 @@ packages:
|
||||||
|
|
||||||
/debug/3.2.7:
|
/debug/3.2.7:
|
||||||
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
||||||
peerDependencies:
|
|
||||||
supports-color: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
supports-color:
|
|
||||||
optional: true
|
|
||||||
dependencies:
|
dependencies:
|
||||||
ms: 2.1.3
|
ms: 2.1.3
|
||||||
dev: false
|
dev: false
|
||||||
|
@ -8285,8 +8280,6 @@ packages:
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
iconv-lite: 0.4.24
|
iconv-lite: 0.4.24
|
||||||
sax: 1.2.4
|
sax: 1.2.4
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/netmask/2.0.2:
|
/netmask/2.0.2:
|
||||||
|
@ -8369,8 +8362,6 @@ packages:
|
||||||
rimraf: 2.7.1
|
rimraf: 2.7.1
|
||||||
semver: 5.7.1
|
semver: 5.7.1
|
||||||
tar: 4.4.19
|
tar: 4.4.19
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/node-releases/2.0.4:
|
/node-releases/2.0.4:
|
||||||
|
|
Loading…
Reference in a new issue