2023-10-15 09:21:13 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
|
2024-04-05 12:13:17 +00:00
|
|
|
echo "Running husky commit-msg hook"
|
2024-04-05 07:34:10 +00:00
|
|
|
npx --no-install commitlint --edit
|
2024-04-05 12:13:17 +00:00
|
|
|
echo "Adding reference tag to commit message"
|
2024-04-12 10:22:00 +00:00
|
|
|
npm run addReferenceTag
|
2024-04-05 12:13:17 +00:00
|
|
|
|