Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/ops/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint --fix"
},
"dependencies": {
"next": "16.0.10",
"next": "16.2.1",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
Expand All @@ -18,7 +18,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"eslint-config-next": "16.2.1",
"typescript": "^5"
}
}
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"geist": "^1.3.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.471.0",
"next": "16.0.10",
"next": "16.2.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"rehype-highlight": "^7.0.2",
Expand All @@ -32,7 +32,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"eslint-config-next": "16.2.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Local versions in apps/web/package.json =="
jq -r '.devDependencies | {eslint, "eslint-config-next": ."eslint-config-next"}' apps/web/package.json

echo
echo "== Local versions in apps/ops/package.json =="
jq -r '.devDependencies | {eslint, "eslint-config-next": ."eslint-config-next"}' apps/ops/package.json

echo
echo "== Peer deps from npm registry for eslint-config-next@16.2.1 =="
curl -s https://registry.npmjs.org/eslint-config-next/16.2.1 | jq '.peerDependencies'

Repository: recoupable/marketing

Length of output: 384


Upgrade eslint to ^9 to satisfy eslint-config-next@16.2.1 peer dependency.

eslint-config-next@16.2.1 requires eslint >= 9.0.0 as a peer dependency, but Line 34 pins eslint to ^8. This will cause installation or linting failures. Update both apps/web and apps/ops to use eslint: "^9".

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/web/package.json` at line 35, Update the pinned eslint dependency from
"^8" to "^9" to satisfy eslint-config-next@16.2.1's peer requirement: edit the
package.json entries for the "eslint" field in both the apps/web and apps/ops
projects and set "eslint": "^9"; after changing the version run your package
manager to refresh lockfiles (npm/yarn/pnpm) and verify linting (npm run lint)
to confirm no other peer conflicts remain.

"postcss": "^8",
"prettier": "3.3.3",
"tailwindcss": "^4.1.17",
Expand Down
Loading