-
-
Notifications
You must be signed in to change notification settings - Fork 674
chore: update dependencies #2309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -10,6 +10,7 @@ module.exports = { | |||
parser: '@typescript-eslint/parser', | |||
parserOptions: { | |||
project: './tsconfig.lint.json', | |||
warnOnUnsupportedTypeScriptVersion: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disables the huge TS version warning. Docs: https://typescript-eslint.io/packages/parser/#warnonunsupportedtypescriptversion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No longer needed in husky v9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file are linting related.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file were made to address a warning when upgrading to vitest v3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes to this file are linting related.
# @see https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations | ||
include: | ||
- collectCoverage: true | ||
node: '20.x' | ||
node: '22.x' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might as well run on latest
"@babel/preset-react": "^7.23.3", | ||
"@babel/register": "^7.22.15", | ||
"@babel/core": "^7.27.1", | ||
"@babel/plugin-transform-async-generator-functions": "^7.27.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The @babel/plugin-proposal-async-generator-functions
package is deprecated with the following message:
This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
Hi @adrai. I opened this PR with a bit of maintenance work. Have a look when you have the chance and let me know if you're happy with it. Thanks! |
lgtm |
@@ -162,8 +162,7 @@ | |||
} | |||
return matched; | |||
}; | |||
const deepFind = function (obj, path) { | |||
let keySeparator = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '.'; | |||
const deepFind = (obj, path, keySeparator = '.') => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ripecosta I hope this type of stuff will not break in some user land scenarios, for the next release
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR updates dependencies to latest versions, patching some security vulnerabilities in the process.
npm audit
Checklist
npm run test