Skip to content

Commit 30f5884

Browse files
committed
fix: relax @eslint/compat eslint peerDependencies constraint
Updated to the suggestion in #106 (comment). This was a breaking change, causing a refresh of our lockfile to generate the following error: ```  ERR_PNPM_PEER_DEP_ISSUES  Unmet peer dependencies XXX └─┬ @eslint/compat 1.2.9 └── ✕ unmet peer eslint@^9.10.0: found 8.57.0 ``` This resolves the breaking change, since I believe @eslint/compat was introduced during the v8 eslint cycle and we don't need to go lower.
1 parent cb858ff commit 30f5884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"typescript": "^5.4.5"
5757
},
5858
"peerDependencies": {
59-
"eslint": "^9.10.0"
59+
"eslint": "8.40 || 9"
6060
},
6161
"peerDependenciesMeta": {
6262
"eslint": {

0 commit comments

Comments
 (0)