lhl 6ff0e96ad3 8-4-1 | před 1 rokem | |
---|---|---|
.. | ||
__tests__ | před 1 rokem | |
bin | před 1 rokem | |
node_modules | před 1 rokem | |
src | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
HOOKS.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
appveyor.yml | před 1 rokem | |
package.json | před 1 rokem |
Git hooks made easy
This is a fork of husky with a few changes:
Prioritizes package.json
located next to .git
directory, instead of hard-coded upward search. This avoids the problem when a root package in a lerna monorepo and a sub package both depends on husky, it gets confused and double-updates the root git hooks with wrong paths.
Changed where hooks are read from in package.json
:
Before
{
"scripts": {
"precommit": "foo"
}
}
After
{
"gitHooks": {
"pre-commit": "foo"
}
}