@henriquehbr/tagit
Version:
A git tag bumper that strictly follows semver
19 lines (17 loc) • 662 B
JavaScript
const showHelp = () => {
console.log("Usage: tagit [options] <version>")
console.log("A git tag bumper that strictly follows semver\n")
console.log("Options:")
console.log("-p <alpha|beta|rc|stable>")
console.log(" Create a pre-release using any of the valid identifiers")
console.log(
' (note: "stable" is used when leaving from pre-release versions to a official release)'
)
console.log("-f, --force-version")
console.log(" Use the specified version on the release")
console.log("-v, --version")
console.log(" Displays the current version of tagit")
console.log("-h")
console.log(" Displays help about using tagit")
}
export default showHelp