Skip to content
Closed
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"@actions/github": "^9.1.1",
"@babel/helpers": "^8.0.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@eslint/js": "^10.0.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.

P2 Badge Keep @eslint/js aligned with ESLint 9

This upgrades the config package to @eslint/js@10.0.1 while the repo still depends on eslint@^9.39.2 at line 202. The v10 @eslint/js package declares an optional peer on eslint@^10.0.0 and also raises its Node engine to ^20.19.0 || ^22.13.0 || >=24, so fresh installs with strict peer checks now see an invalid ESLint pair, and Node 22.0–22.12 still satisfies this repo's engines.node but can fail dependency engine checks. Either bump ESLint and the supported Node floor together, or keep @eslint/js on the 9.x line.

Useful? React with 👍 / 👎.

"@msgpack/msgpack": "^3.1.3",
"@openfeature/core": "^1.11.0",
"@openfeature/server-sdk": "~1.22.0",
Expand Down
7 changes: 6 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -393,11 +393,16 @@
minimatch "^3.1.5"
strip-json-comments "^3.1.1"

"@eslint/js@9.39.3", "@eslint/js@^9.39.2":
"@eslint/js@9.39.3":
version "9.39.3"
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.39.3.tgz#c6168736c7e0c43ead49654ed06a4bcb3833363d"
integrity sha512-1B1VkCq6FuUNlQvlBYb+1jDu/gV297TIs/OeiaSR9l1H27SVW55ONE1e1Vp16NqP683+xEGzxYtv4XCiDPaQiw==

"@eslint/js@^10.0.1":
version "10.0.1"
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-10.0.1.tgz#1e8a876f50117af8ab67e47d5ad94d38d6622583"
integrity sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==

"@eslint/object-schema@^2.1.7":
version "2.1.7"
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.7.tgz#6e2126a1347e86a4dedf8706ec67ff8e107ebbad"
Expand Down
Loading