diff options
Diffstat (limited to 'packages/integrations/react')
-rw-r--r-- | packages/integrations/react/CHANGELOG.md | 11 | ||||
-rw-r--r-- | packages/integrations/react/README.md | 20 | ||||
-rw-r--r-- | packages/integrations/react/package.json | 4 |
3 files changed, 23 insertions, 12 deletions
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index e68872a46..f79252ba4 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/react +## 3.0.0-rc.4 + +### 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 + +### Patch Changes + +- Updated dependencies [[`6011d52d3`](https://github.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7)]: + - @astrojs/internal-helpers@0.2.0-rc.2 + ## 3.0.0-beta.3 ### Minor Changes diff --git a/packages/integrations/react/README.md b/packages/integrations/react/README.md index aca6eba7d..98eb252d3 100644 --- a/packages/integrations/react/README.md +++ b/packages/integrations/react/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/react/package.json b/packages/integrations/react/package.json index 9ac1b0d35..b9da1c827 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/react", "description": "Use React components within Astro", - "version": "3.0.0-beta.3", + "version": "3.0.0-rc.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -44,7 +44,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@astrojs/internal-helpers": "0.2.0-beta.1", + "@astrojs/internal-helpers": "0.2.0-rc.2", "@vitejs/plugin-react": "^4.0.3", "ultrahtml": "^1.2.0" }, |