Skip to content

Commit

Permalink
docs(www): fix diff for peerDependencies (shadcn-ui#5640)
Browse files Browse the repository at this point in the history
Co-authored-by: shadcn <[email protected]>
  • Loading branch information
niclimcy and shadcn authored Oct 30, 2024
1 parent 9cac324 commit ebd82b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/www/content/docs/react-19.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ React 19 is now [rc](https://www.npmjs.com/package/react?activeTab=versions) and

To support React 19, package maintainers will need to test and update their packages to include React 19 as a peer dependency. This is [already](https://github.com/radix-ui/primitives/pull/2952) [in](https://github.com/pacocoursey/cmdk/pull/318) [progress](https://github.com/emilkowalski/vaul/pull/498).

```diff /^19.0.0/
```diff /^19.0/
"peerDependencies": {
- "react": "^16.8 || ^17.0 || ^18.0",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0"
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
},
```

Expand Down

0 comments on commit ebd82b3

Please sign in to comment.