| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 | .TH "NPM\-VERSION" "1" "August 2021" "" "".SH "NAME"\fBnpm-version\fR \- Bump a package version.SS Synopsis.P.RS 2.nfnpm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease [\-\-preid=<prerelease\-id>] | from\-git]\|'npm [\-v | \-\-version]' to print npm version\|'npm view <pkg> version' to view a package's published version\|'npm ls' to inspect current package/dependency versions.fi.RE.SS Description.PRun this in a package directory to bump the version and write the newdata back to \fBpackage\.json\fP, \fBpackage\-lock\.json\fP, and, if present, \fBnpm\-shrinkwrap\.json\fP\|\..PThe \fBnewversion\fP argument should be a valid semver string, avalid second argument to semver\.inc \fIhttps://github\.com/npm/node\-semver#functions\fR (one of \fBpatch\fP, \fBminor\fP, \fBmajor\fP,\fBprepatch\fP, \fBpreminor\fP, \fBpremajor\fP, \fBprerelease\fP), or \fBfrom\-git\fP\|\. In the second case,the existing version will be incremented by 1 in the specified field\.\fBfrom\-git\fP will try to read the latest git tag, and use that as the new npm version\..PIf run in a git repo, it will also create a version commit and tag\.This behavior is controlled by \fBgit\-tag\-version\fP (see below), and canbe disabled on the command line by running \fBnpm \-\-no\-git\-tag\-version version\fP\|\.It will fail if the working directory is not clean, unless the \fB\-f\fP or\fB\-\-force\fP flag is set\..PIf supplied with \fB\-m\fP or \fB\-\-message\fP config option, npm willuse it as a commit message when creating a version commit\.  If the\fBmessage\fP config contains \fB%s\fP then that will be replaced with theresulting version number\.  For example:.P.RS 2.nfnpm version patch \-m "Upgrade to %s for reasons".fi.RE.PIf the \fBsign\-git\-tag\fP config is set, then the tag will be signed usingthe \fB\-s\fP flag to git\.  Note that you must have a default GPG key set upin your git config for this to work properly\.  For example:.P.RS 2.nf$ npm config set sign\-git\-tag true$ npm version patchYou need a passphrase to unlock the secret key foruser: "isaacs (http://blog\.izs\.me/) <i@izs\.me>"2048\-bit RSA key, ID 6C481CF6, created 2010\-08\-31Enter passphrase:.fi.RE.PIf \fBpreversion\fP, \fBversion\fP, or \fBpostversion\fP are in the \fBscripts\fP property ofthe package\.json, they will be executed as part of running \fBnpm version\fP\|\..PThe exact order of execution is as follows:.RS 0.IP 1. 3Check to make sure the git working directory is clean before we get started\.Your scripts may add files to the commit in future steps\.This step is skipped if the \fB\-\-force\fP flag is set\..IP 2. 3Run the \fBpreversion\fP script\. These scripts have access to the old \fBversion\fP in package\.json\.A typical use would be running your full test suite before deploying\.Any files you want added to the commit should be explicitly added using \fBgit add\fP\|\..IP 3. 3Bump \fBversion\fP in \fBpackage\.json\fP as requested (\fBpatch\fP, \fBminor\fP, \fBmajor\fP, etc)\..IP 4. 3Run the \fBversion\fP script\. These scripts have access to the new \fBversion\fP in package\.json(so they can incorporate it into file headers in generated files for example)\.Again, scripts should explicitly add generated files to the commit using \fBgit add\fP\|\..IP 5. 3Commit and tag\..IP 6. 3Run the \fBpostversion\fP script\. Use it to clean up the file system or automatically pushthe commit and/or tag\..RE.PTake the following example:.P.RS 2.nf    "scripts": {      "preversion": "npm test",      "version": "npm run build && git add \-A dist",      "postversion": "git push && git push \-\-tags && rm \-rf build/temp"    }.fi.RE.PThis runs all your tests, and proceeds only if they pass\. Then runs your \fBbuild\fP script, andadds everything in the \fBdist\fP directory to the commit\. After the commit, it pushes the new commitand tag up to the server, and deletes the \fBbuild/temp\fP directory\..SS Configuration.SS allow\-same\-version.RS 0.IP \(bu 2Default: false.IP \(bu 2Type: Boolean.RE.PPrevents throwing an error when \fBnpm version\fP is used to set the new version to the same value as the current version\..SS git\-tag\-version.RS 0.IP \(bu 2Default: true.IP \(bu 2Type: Boolean.RE.PCommit and tag the version change\..SS commit\-hooks.RS 0.IP \(bu 2Default: true.IP \(bu 2Type: Boolean.RE.PRun git commit hooks when committing the version change\..SS sign\-git\-tag.RS 0.IP \(bu 2Default: false.IP \(bu 2Type: Boolean.RE.PPass the \fB\-s\fP flag to git to sign the tag\..PNote that you must have a default GPG key set up in your git config for this to work properly\..SS See Also.RS 0.IP \(bu 2npm help init.IP \(bu 2npm help run\-script.IP \(bu 2npm help scripts.IP \(bu 2npm help package\.json.IP \(bu 2npm help semver.IP \(bu 2npm help config.RE
 |