snippetbashTip
standard-version — Automate versioning and changelog generation, with SemVer and Conventional Commits. More information
Viewed 0 times
commandandchangelogautomategenerationcliversioningstandard-version
Problem
How to use the
standard-version command: Automate versioning and changelog generation, with SemVer and Conventional Commits. More information: <https://github.com/conventional-changelog/standard-version>.Solution
standard-version — Automate versioning and changelog generation, with SemVer and Conventional Commits. More information: <https://github.com/conventional-changelog/standard-version>.Update the changelog file and tag a release:
standard-versionTag a release without bumping the version:
standard-version --first-releaseUpdate the changelog and tag an alpha release:
standard-version --prerelease alphaUpdate the changelog and tag a specific release type:
standard-version --release-as {{major|minor|patch}}Tag a release, preventing hooks from being verified during the commit step:
standard-version --no-verifyTag a release committing all staged changes, not just files affected by
standard-version:standard-version --commit-allUpdate a specific changelog file and tag a release:
standard-version --infile {{path/to/file.md}}Display the release that would be performed without performing them:
standard-version --dry-runCode Snippets
Update the changelog file and tag a release
standard-versionTag a release without bumping the version
standard-version --first-releaseUpdate the changelog and tag an alpha release
standard-version --prerelease alphaUpdate the changelog and tag a specific release type
standard-version --release-as {{major|minor|patch}}Tag a release, preventing hooks from being verified during the commit step
standard-version --no-verifyContext
tldr-pages: common/standard-version
Revisions (0)
No revisions yet.