Skip to content

Commit

Permalink
chore(examples): Restrict React to v18 in Next 14 example (#2778)
Browse files Browse the repository at this point in the history
This restricts dependabot from updating React to v19 in our Next 14 example since Next 14 doesn't support React 19.

#2773 was failing peerDep resolution due to this.
  • Loading branch information
blaine-arcjet authored Jan 10, 2025
1 parent e0d6ec7 commit 50cde21
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,14 @@ updates:
# restricted.
- dependency-name: next
versions: [">=15"]
- dependency-name: react
versions: [">=19"]
- dependency-name: "@types/react"
versions: [">=19"]
- dependency-name: react-dom
versions: [">=19"]
- dependency-name: "@types/react-dom"
versions: [">=19"]
- dependency-name: eslint
versions: [">=9"]
- dependency-name: eslint-config-next
Expand Down

0 comments on commit 50cde21

Please sign in to comment.