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.jsonlocated next to.gitdirectory, 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" } }