|
|
3 yıl önce | |
|---|---|---|
| .. | ||
| lib | 3 yıl önce | |
| LICENSE | 3 yıl önce | |
| README.md | 3 yıl önce | |
| husky.sh | 3 yıl önce | |
| package.json | 3 yıl önce | |
Modern native Git hooks made easy
Husky improves your commits and more 🐶 woof!
npm install husky --save-dev
Edit package.json > prepare script and run it once:
npm set-script prepare "husky install"
npm run prepare
Add a hook:
npx husky add .husky/pre-commit "npm test"
git add .husky/pre-commit
Make a commit:
git commit -m "Keep calm and commit"
# `npm test` will run