LAPTOP-UBJMM5MG\user d7428fd373 更新 1 éve%!(EXTRA string=óta)
..
bin d7428fd373 更新 1 éve%!(EXTRA string=óta)
node_modules d7428fd373 更新 1 éve%!(EXTRA string=óta)
src d7428fd373 更新 1 éve%!(EXTRA string=óta)
CHANGELOG.md d7428fd373 更新 1 éve%!(EXTRA string=óta)
HOOKS.md d7428fd373 更新 1 éve%!(EXTRA string=óta)
LICENSE d7428fd373 更新 1 éve%!(EXTRA string=óta)
README.md d7428fd373 更新 1 éve%!(EXTRA string=óta)
appveyor.yml d7428fd373 更新 1 éve%!(EXTRA string=óta)
package.json d7428fd373 更新 1 éve%!(EXTRA string=óta)

README.md

yorkie

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"
    }
  }