Skip to content

Commit

Permalink
chore: add changelog script
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Feb 13, 2025
1 parent 0328693 commit b8f3d3b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bin/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env zsh

main() {
[[ -n $('builtin' 'command' -v conventional-changelog) ]] || {
printf "Requires conventional-changelog\nhttps://github.com/conventional-changelog/conventional-changelog\n"
return 1
}

'builtin' 'command' conventional-changelog -i CHANGELOG.md -s -p angular
}

main

0 comments on commit b8f3d3b

Please sign in to comment.