@soybeanjs/changelog
v0.4.5
Published
generate changelog form git tags and commits for github
Downloads
10,282
Readme
@soybeanjs/changelog
generate changelog by git tags and commits
Install
pnpm i -D @soybeanjs/changelogUsage
import {
getChangelogMarkdown,
getTotalChangelogMarkdown,
generateChangelog,
generateTotalChangelog
} from '@soybeanjs/changelog';
// get the changelog markdown by two git tags
getChangelogMarkdown();
// get the changelog markdown by the total git tags
getTotalChangelogMarkdown();
// generate the changelog markdown by two git tags
generateChangelog();
// generate the changelog markdown by the total git tags
generateTotalChangelog();