25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
unknown fe79185e87 ali aslani 1 yıl önce
..
__tests__ ali aslani 1 yıl önce
bin ali aslani 1 yıl önce
node_modules ali aslani 1 yıl önce
src ali aslani 1 yıl önce
CHANGELOG.md ali aslani 1 yıl önce
HOOKS.md ali aslani 1 yıl önce
LICENSE ali aslani 1 yıl önce
README.md ali aslani 1 yıl önce
appveyor.yml ali aslani 1 yıl önce
package.json ali aslani 1 yıl önce

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