npm-version-git-cli
v2.3.1
Published
increment version of package.json according to git log Edit
Readme
npm-version-git-cli
Increment version of package.json according to git log
Fork notice
This is a fork of https://github.com/ronapelbaum/npm-version-git which includes
a patch to fix executing
npm-version-gitfrom the cli: https://github.com/ronapelbaum/npm-version-git/issues/2Adding the
--forceflag tonpm versionif there are additional assets pending commit
How it works
Parse the latest git commit message, search for regex, then bump npm version ? accordingly.
I.e:
last commit message: fixed issue #123 [minor] => npm version minor
last commit message: fixed typo => npm version patch
Install
npm i -g npm-version-git-cliUsage
In package.json:
"scripts": {
"prepublishOnly": "npm-version-git-cli",
}Options
-rgx
The regex pattern to work on git commit message.
npm-version-git-cli -rgx "\[(major|minor|patch)\]"-def
The default semver incase regex did't match.
npm-version-git-cli -def patch