You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're currently using an older version of Husky that shows deprecation warnings:
husky - DEPRECATED
Please remove the following two lines from .husky/pre-commit:
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
They WILL FAIL in v10.0.0
This indicates that our current Husky setup needs to be updated to be compatible with Husky v10.0.0.
Proposed Solution
Upgrade Husky to version 10.0.0 or later
Update the pre-commit hook and any other Husky hooks to use the new format
Ensure all hooks continue to work correctly after the upgrade
Benefits
Removes deprecation warnings
Ensures we're using the latest version with all security patches and features
Prepares our codebase for future compatibility
The text was updated successfully, but these errors were encountered:
Problem
We're currently using an older version of Husky that shows deprecation warnings:
This indicates that our current Husky setup needs to be updated to be compatible with Husky v10.0.0.
Proposed Solution
Benefits
The text was updated successfully, but these errors were encountered: