diff options
author | Ruy Adorno <ruyadorno@hotmail.com> | 2020-11-20 16:34:16 -0500 |
---|---|---|
committer | Myles Borins <mylesborins@github.com> | 2020-11-23 12:58:01 -0500 |
commit | cb5acc839c1ed5a0a3051f6ec1c500514bb8cda8 (patch) | |
tree | de309e3afb65e777915cb7bcbfa53890514928d6 /doc | |
parent | 513764b5806a1fd2124c2be1db76d3433a3d1135 (diff) | |
download | node-new-cb5acc839c1ed5a0a3051f6ec1c500514bb8cda8.tar.gz |
doc: add missing version to update cmd
Add to the example of running `./tools/update-npm.sh` the missing
reference to the version number that is required by the command.
PR-URL: https://github.com/nodejs/node/pull/36204
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guides/maintaining-npm.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/guides/maintaining-npm.md b/doc/guides/maintaining-npm.md index 3709977072..bf789af65b 100644 --- a/doc/guides/maintaining-npm.md +++ b/doc/guides/maintaining-npm.md @@ -12,8 +12,10 @@ changes can be reviewed and landed via the normal consensus seeking process. ## Step 1: Run the update script +In the following examples, `x.y.z` should match the npm version to update to. + ```console -$ ./tools/update-npm.sh +$ ./tools/update-npm.sh x.y.z ``` ## Step 2: Commit new npm |