UNPKG

@henriquehbr/tagit

Version:

A git tag bumper that strictly follows semver

13 lines (10 loc) 222 B
import runCommand from "./runCommand.js" const getCommitsSinceTag = tag => { const commits = runCommand("git", [ "log", "--format=format:%s", `${tag}..HEAD` ]) return commits } export default getCommitsSinceTag