1<!DOCTYPE html><html><head> 2<meta charset="utf-8"> 3<title>npm-version</title> 4<style> 5body { 6 background-color: #ffffff; 7 color: #24292e; 8 9 margin: 0; 10 11 line-height: 1.5; 12 13 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; 14} 15#rainbar { 16 height: 10px; 17 background-image: linear-gradient(139deg, #fb8817, #ff4b01, #c12127, #e02aff); 18} 19 20a { 21 text-decoration: none; 22 color: #0366d6; 23} 24a:hover { 25 text-decoration: underline; 26} 27 28pre { 29 margin: 1em 0px; 30 padding: 1em; 31 border: solid 1px #e1e4e8; 32 border-radius: 6px; 33 34 display: block; 35 overflow: auto; 36 37 white-space: pre; 38 39 background-color: #f6f8fa; 40 color: #393a34; 41} 42code { 43 font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace; 44 font-size: 85%; 45 padding: 0.2em 0.4em; 46 background-color: #f6f8fa; 47 color: #393a34; 48} 49pre > code { 50 padding: 0; 51 background-color: inherit; 52 color: inherit; 53} 54h1, h2, h3 { 55 font-weight: 600; 56} 57 58#logobar { 59 background-color: #333333; 60 margin: 0 auto; 61 padding: 1em 4em; 62} 63#logobar .logo { 64 float: left; 65} 66#logobar .title { 67 font-weight: 600; 68 color: #dddddd; 69 float: left; 70 margin: 5px 0 0 1em; 71} 72#logobar:after { 73 content: ""; 74 display: block; 75 clear: both; 76} 77 78#content { 79 margin: 0 auto; 80 padding: 0 4em; 81} 82 83#table_of_contents > h2 { 84 font-size: 1.17em; 85} 86#table_of_contents ul:first-child { 87 border: solid 1px #e1e4e8; 88 border-radius: 6px; 89 padding: 1em; 90 background-color: #f6f8fa; 91 color: #393a34; 92} 93#table_of_contents ul { 94 list-style-type: none; 95 padding-left: 1.5em; 96} 97#table_of_contents li { 98 font-size: 0.9em; 99} 100#table_of_contents li a { 101 color: #000000; 102} 103 104header.title { 105 border-bottom: solid 1px #e1e4e8; 106} 107header.title > h1 { 108 margin-bottom: 0.25em; 109} 110header.title > .description { 111 display: block; 112 margin-bottom: 0.5em; 113 line-height: 1; 114} 115 116footer#edit { 117 border-top: solid 1px #e1e4e8; 118 margin: 3em 0 4em 0; 119 padding-top: 2em; 120} 121</style> 122</head> 123<body> 124<div id="banner"> 125<div id="rainbar"></div> 126<div id="logobar"> 127<svg class="logo" role="img" height="32" width="32" viewBox="0 0 700 700"> 128<polygon fill="#cb0000" points="0,700 700,700 700,0 0,0"></polygon> 129<polygon fill="#ffffff" points="150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150"></polygon> 130</svg> 131<div class="title"> 132npm command-line interface 133</div> 134</div> 135</div> 136 137<section id="content"> 138<header class="title"> 139<h1 id="npm-version">npm-version</h1> 140<span class="description">Bump a package version</span> 141</header> 142 143<section id="table_of_contents"> 144<h2 id="table-of-contents">Table of contents</h2> 145<div id="_table_of_contents"><ul><li><a href="#synopsis">Synopsis</a></li><li><a href="#configuration">Configuration</a></li><ul><li><a href="#allow-same-version"><code>allow-same-version</code></a></li><li><a href="#commit-hooks"><code>commit-hooks</code></a></li><li><a href="#git-tag-version"><code>git-tag-version</code></a></li><li><a href="#json"><code>json</code></a></li><li><a href="#preid"><code>preid</code></a></li><li><a href="#sign-git-tag"><code>sign-git-tag</code></a></li><li><a href="#workspace"><code>workspace</code></a></li><li><a href="#workspaces"><code>workspaces</code></a></li><li><a href="#workspaces-update"><code>workspaces-update</code></a></li><li><a href="#include-workspace-root"><code>include-workspace-root</code></a></li></ul><li><a href="#description">Description</a></li><li><a href="#see-also">See Also</a></li></ul></div> 146</section> 147 148<div id="_content"><h3 id="synopsis">Synopsis</h3> 149<pre><code class="language-bash">npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease | from-git] 150 151alias: verison 152</code></pre> 153<h3 id="configuration">Configuration</h3> 154<h4 id="allow-same-version"><code>allow-same-version</code></h4> 155<ul> 156<li>Default: false</li> 157<li>Type: Boolean</li> 158</ul> 159<p>Prevents throwing an error when <code>npm version</code> is used to set the new version 160to the same value as the current version.</p> 161<h4 id="commit-hooks"><code>commit-hooks</code></h4> 162<ul> 163<li>Default: true</li> 164<li>Type: Boolean</li> 165</ul> 166<p>Run git commit hooks when using the <code>npm version</code> command.</p> 167<h4 id="git-tag-version"><code>git-tag-version</code></h4> 168<ul> 169<li>Default: true</li> 170<li>Type: Boolean</li> 171</ul> 172<p>Tag the commit when using the <code>npm version</code> command. Setting this to false 173results in no commit being made at all.</p> 174<h4 id="json"><code>json</code></h4> 175<ul> 176<li>Default: false</li> 177<li>Type: Boolean</li> 178</ul> 179<p>Whether or not to output JSON data, rather than the normal output.</p> 180<ul> 181<li>In <code>npm pkg set</code> it enables parsing set values with JSON.parse() before 182saving them to your <code>package.json</code>.</li> 183</ul> 184<p>Not supported by all npm commands.</p> 185<h4 id="preid"><code>preid</code></h4> 186<ul> 187<li>Default: ""</li> 188<li>Type: String</li> 189</ul> 190<p>The "prerelease identifier" to use as a prefix for the "prerelease" part of 191a semver. Like the <code>rc</code> in <code>1.2.0-rc.8</code>.</p> 192<h4 id="sign-git-tag"><code>sign-git-tag</code></h4> 193<ul> 194<li>Default: false</li> 195<li>Type: Boolean</li> 196</ul> 197<p>If set to true, then the <code>npm version</code> command will tag the version using 198<code>-s</code> to add a signature.</p> 199<p>Note that git requires you to have set up GPG keys in your git configs for 200this to work properly.</p> 201<h4 id="workspace"><code>workspace</code></h4> 202<ul> 203<li>Default:</li> 204<li>Type: String (can be set multiple times)</li> 205</ul> 206<p>Enable running a command in the context of the configured workspaces of the 207current project while filtering by running only the workspaces defined by 208this configuration option.</p> 209<p>Valid values for the <code>workspace</code> config are either:</p> 210<ul> 211<li>Workspace names</li> 212<li>Path to a workspace directory</li> 213<li>Path to a parent workspace directory (will result in selecting all 214workspaces within that folder)</li> 215</ul> 216<p>When set for the <code>npm init</code> command, this may be set to the folder of a 217workspace which does not yet exist, to create the folder and set it up as a 218brand new workspace within the project.</p> 219<p>This value is not exported to the environment for child processes.</p> 220<h4 id="workspaces"><code>workspaces</code></h4> 221<ul> 222<li>Default: null</li> 223<li>Type: null or Boolean</li> 224</ul> 225<p>Set to true to run the command in the context of <strong>all</strong> configured 226workspaces.</p> 227<p>Explicitly setting this to false will cause commands like <code>install</code> to 228ignore workspaces altogether. When not set explicitly:</p> 229<ul> 230<li>Commands that operate on the <code>node_modules</code> tree (install, update, etc.) 231will link workspaces into the <code>node_modules</code> folder. - Commands that do 232other things (test, exec, publish, etc.) will operate on the root project, 233<em>unless</em> one or more workspaces are specified in the <code>workspace</code> config.</li> 234</ul> 235<p>This value is not exported to the environment for child processes.</p> 236<h4 id="workspaces-update"><code>workspaces-update</code></h4> 237<ul> 238<li>Default: true</li> 239<li>Type: Boolean</li> 240</ul> 241<p>If set to true, the npm cli will run an update after operations that may 242possibly change the workspaces installed to the <code>node_modules</code> folder.</p> 243<h4 id="include-workspace-root"><code>include-workspace-root</code></h4> 244<ul> 245<li>Default: false</li> 246<li>Type: Boolean</li> 247</ul> 248<p>Include the workspace root when workspaces are enabled for a command.</p> 249<p>When false, specifying individual workspaces via the <code>workspace</code> config, or 250all workspaces via the <code>workspaces</code> flag, will cause npm to operate only on 251the specified workspaces, and not on the root project.</p> 252<p>This value is not exported to the environment for child processes.</p> 253<h3 id="description">Description</h3> 254<p>Run this in a package directory to bump the version and write the new data 255back to <code>package.json</code>, <code>package-lock.json</code>, and, if present, 256<code>npm-shrinkwrap.json</code>.</p> 257<p>The <code>newversion</code> argument should be a valid semver string, a valid second 258argument to <a href="https://github.com/npm/node-semver#functions">semver.inc</a> (one 259of <code>patch</code>, <code>minor</code>, <code>major</code>, <code>prepatch</code>, <code>preminor</code>, <code>premajor</code>, 260<code>prerelease</code>), or <code>from-git</code>. In the second case, the existing version will 261be incremented by 1 in the specified field. <code>from-git</code> will try to read 262the latest git tag, and use that as the new npm version.</p> 263<p>If run in a git repo, it will also create a version commit and tag. This 264behavior is controlled by <code>git-tag-version</code> (see below), and can be 265disabled on the command line by running <code>npm --no-git-tag-version version</code>. 266It will fail if the working directory is not clean, unless the <code>-f</code> or 267<code>--force</code> flag is set.</p> 268<p>If supplied with <code>-m</code> or <a href="../using-npm/config#message.html"><code>--message</code> config</a> option, 269npm will use it as a commit message when creating a version commit. If the 270<code>message</code> config contains <code>%s</code> then that will be replaced with the resulting 271version number. For example:</p> 272<pre><code class="language-bash">npm version patch -m "Upgrade to %s for reasons" 273</code></pre> 274<p>If the <a href="../using-npm/config#sign-git-tag.html"><code>sign-git-tag</code> config</a> is set, then the 275tag will be signed using the <code>-s</code> flag to git. Note that you must have a default 276GPG key set up in your git config for this to work properly. For example:</p> 277<pre><code class="language-bash">$ npm config set sign-git-tag true 278$ npm version patch 279 280You need a passphrase to unlock the secret key for 281user: "isaacs (http://blog.izs.me/) <i@izs.me>" 2822048-bit RSA key, ID 6C481CF6, created 2010-08-31 283 284Enter passphrase: 285</code></pre> 286<p>If <code>preversion</code>, <code>version</code>, or <code>postversion</code> are in the <code>scripts</code> property 287of the package.json, they will be executed as part of running <code>npm version</code>.</p> 288<p>The exact order of execution is as follows:</p> 289<ol> 290<li>Check to make sure the git working directory is clean before we get 291started. Your scripts may add files to the commit in future steps. 292This step is skipped if the <code>--force</code> flag is set.</li> 293<li>Run the <code>preversion</code> script. These scripts have access to the old 294<code>version</code> in package.json. A typical use would be running your full 295test suite before deploying. Any files you want added to the commit 296should be explicitly added using <code>git add</code>.</li> 297<li>Bump <code>version</code> in <code>package.json</code> as requested (<code>patch</code>, <code>minor</code>, 298<code>major</code>, etc).</li> 299<li>Run the <code>version</code> script. These scripts have access to the new <code>version</code> 300in package.json (so they can incorporate it into file headers in 301generated files for example). Again, scripts should explicitly add 302generated files to the commit using <code>git add</code>.</li> 303<li>Commit and tag.</li> 304<li>Run the <code>postversion</code> script. Use it to clean up the file system or 305automatically push the commit and/or tag.</li> 306</ol> 307<p>Take the following example:</p> 308<pre><code class="language-json">{ 309 "scripts": { 310 "preversion": "npm test", 311 "version": "npm run build && git add -A dist", 312 "postversion": "git push && git push --tags && rm -rf build/temp" 313 } 314} 315</code></pre> 316<p>This runs all your tests and proceeds only if they pass. Then runs your 317<code>build</code> script, and adds everything in the <code>dist</code> directory to the commit. 318After the commit, it pushes the new commit and tag up to the server, and 319deletes the <code>build/temp</code> directory.</p> 320<h3 id="see-also">See Also</h3> 321<ul> 322<li><a href="../commands/npm-init.html">npm init</a></li> 323<li><a href="../commands/npm-run-script.html">npm run-script</a></li> 324<li><a href="../using-npm/scripts.html">npm scripts</a></li> 325<li><a href="../configuring-npm/package-json.html">package.json</a></li> 326<li><a href="../using-npm/config.html">config</a></li> 327</ul></div> 328 329<footer id="edit"> 330<a href="https://github.com/npm/cli/edit/latest/docs/content/commands/npm-version.md"> 331<svg role="img" viewBox="0 0 16 16" width="16" height="16" fill="currentcolor" style="vertical-align: text-bottom; margin-right: 0.3em;"> 332<path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path> 333</svg> 334Edit this page on GitHub 335</a> 336</footer> 337</section> 338 339 340 341</body></html>