summaryrefslogtreecommitdiff
path: root/packages/integrations/solid
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-08-22 07:19:18 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-22 10:19:18 -0400
commit9f1881455a5c3a6457125dafbcd342be5c4de907 (patch)
tree967ccf17b7973ce6acacada687cbaaf7218804b6 /packages/integrations/solid
parenta93e061cfb0779e41297f22002d6a446850acc93 (diff)
downloadastro-9f1881455a5c3a6457125dafbcd342be5c4de907.tar.gz
astro-9f1881455a5c3a6457125dafbcd342be5c4de907.tar.zst
astro-9f1881455a5c3a6457125dafbcd342be5c4de907.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/solid')
-rw-r--r--packages/integrations/solid/CHANGELOG.md6
-rw-r--r--packages/integrations/solid/README.md20
-rw-r--r--packages/integrations/solid/package.json2
3 files changed, 17 insertions, 11 deletions
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index 725393c4e..af7a3547a 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/solid-js
+## 3.0.0-rc.3
+
+### Major Changes
+
+- [#8179](https://github.com/withastro/astro/pull/8179) [`6011d52d3`](https://github.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7) Thanks [@matthewp](https://github.com/matthewp)! - Astro 3.0 Release Candidate
+
## 3.0.0-beta.2
### Patch Changes
diff --git a/packages/integrations/solid/README.md b/packages/integrations/solid/README.md
index 7a2db0723..d11d5da88 100644
--- a/packages/integrations/solid/README.md
+++ b/packages/integrations/solid/README.md
@@ -83,16 +83,16 @@ export default defineConfig({
// Enable many frameworks to support all different kinds of components.
// No `include` is needed if you are only using a single JSX framework!
integrations: [
- preact({
- include: ['**/preact/*']
- }),
- react({
- include: ['**/react/*']
- }),
- solid({
- include: ['**/solid/*'],
- }),
- ]
+ preact({
+ include: ['**/preact/*'],
+ }),
+ react({
+ include: ['**/react/*'],
+ }),
+ solid({
+ include: ['**/solid/*'],
+ }),
+ ],
});
```
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index aab485c9e..9075c9f82 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "3.0.0-beta.2",
+ "version": "3.0.0-rc.3",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",