JSPM

@nkiwi/yorkie-pnpm

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q18158F
  • License MIT

githooks management forked from husky

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nkiwi/yorkie-pnpm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

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