forked from verdnatura/salix-front
9 lines
203 B
Plaintext
9 lines
203 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
. "$(dirname -- "$0")/_/husky.sh"
|
||
|
|
||
|
echo "Running husky commit-msg hook"
|
||
|
npx --no-install commitlint --edit
|
||
|
echo "Adding reference tag to commit message"
|
||
|
node .husky/addReferenceTag.js
|
||
|
|