keksAccountGUI/node_modulesOLD/yorkie
Kekskurse 8e5ce9e324 Update Framework 2019-08-11 20:48:02 +02:00
..
__tests__ Update Framework 2019-08-11 20:48:02 +02:00
bin Update Framework 2019-08-11 20:48:02 +02:00
src Update Framework 2019-08-11 20:48:02 +02:00
CHANGELOG.md Update Framework 2019-08-11 20:48:02 +02:00
HOOKS.md Update Framework 2019-08-11 20:48:02 +02:00
LICENSE Update Framework 2019-08-11 20:48:02 +02:00
README.md Update Framework 2019-08-11 20:48:02 +02:00
appveyor.yml Update Framework 2019-08-11 20:48:02 +02:00
package.json Update Framework 2019-08-11 20:48:02 +02:00

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