[DEV-1803] - bump dependencies to fix incompatible version issues on siren-web-services after node bump#45
[DEV-1803] - bump dependencies to fix incompatible version issues on siren-web-services after node bump#45
Conversation
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": "yarn run lint && yarn run test" | ||
| } | ||
| }, |
There was a problem hiding this comment.
Husky v9 no longer supports configuring Git hooks via the \"husky\": { \"hooks\": ... } block in package.json (that format was for older Husky versions like v4). With husky: ^9.0.0, this will likely stop your pre-commit hook from running. Migrate to the modern Husky setup (add a prepare script that runs Husky install, and move hooks into the .husky/ directory), or keep Husky on a compatible major version if you want to retain this config style.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…atible with eslint v9
…plugin into bump-dependencies
these bumps fix the issues on this pr to bump node to 24.14

tested locally and could succesfully build web-services with this commit