Skip to content
Open
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 @@ -67,7 +67,7 @@
"compare-versions": "~6.1.0",
"deep-diff": "~1.0.2",
"es-main": "~1.3.0",
"eslint": "~9.20.1",
"eslint": "~10.0.0",

Choose a reason for hiding this comment

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

critical

Upgrading eslint to a new major version (v10.0.0) will likely cause your build to fail due to peer dependency conflicts. Several other eslint-related packages in your devDependencies are not compatible with ESLint v10.

To resolve this, you'll need to upgrade these packages to versions that support ESLint v10. Based on your package-lock.json, the following packages are affected:

  • @eslint/compat
  • @typescript-eslint/eslint-plugin
  • @typescript-eslint/parser
  • eslint-plugin-import
  • eslint-plugin-jsdoc
  • eslint-plugin-node
  • eslint-plugin-prefer-arrow-functions
  • eslint-plugin-promise
  • eslint-plugin-unicorn

After updating these dependencies in package.json, please run npm install to update package-lock.json and commit the changes. This is a significant upgrade, so please test your linting setup thoroughly after making these changes.

"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jsdoc": "~50.6.0",
Expand Down