Skip to content

Commit

Permalink
deps(examples): Restrict React version in Remix example (#2853)
Browse files Browse the repository at this point in the history
It looks like Remix doesn't support React 19 either. Hooray peerDeps.
  • Loading branch information
blaine-arcjet authored Jan 14, 2025
1 parent 388e755 commit 58749ca
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -838,10 +838,18 @@ updates:
# TODO(#539): Upgrade to eslint 9
- dependency-name: eslint
versions: [">=9"]
# Remix 2 doesn't support Vite 6 so the dependencies below are
# Remix 2 doesn't support Vite 6 or React 19 so the dependencies below are
# restricted.
- dependency-name: vite
versions: [">=6"]
- dependency-name: react
versions: [">=19"]
- dependency-name: "@types/react"
versions: [">=19"]
- dependency-name: react-dom
versions: [">=19"]
- dependency-name: "@types/react-dom"
versions: [">=19"]

- package-ecosystem: npm
directory: /examples/sveltekit
Expand Down

0 comments on commit 58749ca

Please sign in to comment.