Skip to content

Commit b64963e

Browse files
claudiahdzcodebytere
authored andcommitted
deps: upgrade npm to 6.14.6
PR-URL: #34246 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent df592c4 commit b64963e

File tree

239 files changed

+908
-728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+908
-728
lines changed

deps/npm/AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,3 +695,7 @@ Jarda Snajdr <[email protected]>
695695
Naix Geng <[email protected]>
696696
Dylan Treisman <[email protected]>
697697
mum-never-proud <[email protected]>
698+
Peter Fich <[email protected]>
699+
Maxwell Gerber <[email protected]>
700+
Sean Poulter <[email protected]>
701+
vanishcode <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 6.14.6 (2020-07-07)
2+
3+
### BUG FIXES
4+
* [`a9857b8f6`](https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc) chore: remove auth info from logs ([@claudiahdz](https://github.com/claudiahdz))
5+
* [`b7ad77598`](https://github.com/npm/cli/commit/b7ad77598112908d60195d0fbc472b3c84275fd5) [#1416](https://github.com/npm/cli/pull/1416) fix: wrong `npm doctor` command result ([@vanishcode](https://github.com/vanishcode))
6+
7+
### DEPENDENCIES
8+
* [`94eca6377`](https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee) `[email protected]` ([@claudiahdz](https://github.com/claudiahdz))
9+
* [`c49b6ae28`](https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705) [#1418](https://github.com/npm/cli/pull/1418) `[email protected]` ([@kemitchell](https://github.com/kemitchell))
10+
11+
### DOCUMENTATION
12+
* [`2e052984b`](https://github.com/npm/cli/commit/2e052984b08c09115ed75387fb2c961631d85d77)
13+
[#1459](https://github.com/npm/cli/pull/1459)
14+
chore(docs): fixed links to cli commands ([@claudiahdz](https://github.com/claudiahdz))
15+
* [`0ca3509ca`](https://github.com/npm/cli/commit/0ca3509ca940865392daeeabb39192f7d5af9f5e)
16+
[#1283](https://github.com/npm/cli/pull/1283) Update npm-link.md ([@peterfich](https://github.com/peterfich))
17+
* [`3dd429e9a`](https://github.com/npm/cli/commit/3dd429e9aad760ce2ff9e522b34ebfebd85b460c)
18+
[#1377](https://github.com/npm/cli/pull/1377)
19+
Add note about dropped `*` filenames ([@maxwellgerber](https://github.com/maxwellgerber))
20+
* [`9a2e2e797`](https://github.com/npm/cli/commit/9a2e2e797e5c91e7f4f261583a1906e2c440cc2f)
21+
[#1429](https://github.com/npm/cli/pull/1429) Fix typo ([@seanpoulter](https://github.com/seanpoulter))
22+
123
## 6.14.5 (2020-05-01)
224

325
### BUG FIXES

deps/npm/bin/npm-cli.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
var npm = require('../lib/npm.js')
2929
var npmconf = require('../lib/config/core.js')
3030
var errorHandler = require('../lib/utils/error-handler.js')
31+
var replaceInfo = require('../lib/utils/replace-info.js')
3132

3233
var configDefs = npmconf.defs
3334
var shorthands = configDefs.shorthands
@@ -40,7 +41,8 @@
4041
process.argv.splice(1, 1, 'npm', '-g')
4142
}
4243

43-
log.verbose('cli', process.argv)
44+
var args = replaceInfo(process.argv)
45+
log.verbose('cli', args)
4446

4547
var conf = nopt(types, shorthands)
4648
npm.argv = conf.argv.remain

deps/npm/docs/content/cli-commands/npm-access.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Management of teams and team memberships is done with the `npm team` command.
8787
### See Also
8888
8989
* [`libnpmaccess`](https://npm.im/libnpmaccess)
90-
* [npm team](/cli-commands/team)
91-
* [npm publish](/cli-commands/publish)
92-
* [npm config](/cli-commands/config)
90+
* [npm team](/cli-commands/npm-team)
91+
* [npm publish](/cli-commands/npm-publish)
92+
* [npm config](/cli-commands/npm-config)
9393
* [npm registry](/using-npm/registry)

deps/npm/docs/content/cli-commands/npm-adduser.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ username/password entry in legacy npm.
8989
### See Also
9090

9191
* [npm registry](/using-npm/registry)
92-
* [npm config](/cli-commands/config)
92+
* [npm config](/cli-commands/npm-config)
9393
* [npmrc](/configuring-npm/npmrc)
94-
* [npm owner](/cli-commands/owner)
95-
* [npm whoami](/cli-commands/whoami)
94+
* [npm owner](/cli-commands/npm-owner)
95+
* [npm whoami](/cli-commands/npm-whoami)

deps/npm/docs/content/cli-commands/npm-audit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ configuration setting.
131131

132132
### See Also
133133

134-
* [npm install](/cli-commands/install)
134+
* [npm install](/cli-commands/npm-install)
135135
* [package-locks](/configuring-npm/package-locks)
136136
* [config](/using-npm/config)

deps/npm/docs/content/cli-commands/npm-bin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Print the folder where npm will install executables.
1919

2020
### See Also
2121

22-
* [npm prefix](/cli-commands/prefix)
23-
* [npm root](/cli-commands/root)
22+
* [npm prefix](/cli-commands/npm-prefix)
23+
* [npm root](/cli-commands/npm-root)
2424
* [npm folders](/configuring-npm/folders)
25-
* [npm config](/cli-commands/config)
25+
* [npm config](/cli-commands/npm-config)
2626
* [npmrc](/configuring-npm/npmrc)

deps/npm/docs/content/cli-commands/npm-bugs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ The base URL of the npm package registry.
4141

4242
### See Also
4343

44-
* [npm docs](/cli-commands/docs)
45-
* [npm view](/cli-commands/view)
46-
* [npm publish](/cli-commands/publish)
44+
* [npm docs](/cli-commands/npm-docs)
45+
* [npm view](/cli-commands/npm-view)
46+
* [npm publish](/cli-commands/npm-publish)
4747
* [npm registry](/using-npm/registry)
48-
* [npm config](/cli-commands/config)
48+
* [npm config](/cli-commands/npm-config)
4949
* [npmrc](/configuring-npm/npmrc)
5050
* [package.json](/configuring-npm/package-json)

deps/npm/docs/content/cli-commands/npm-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ directly, run:
2828

2929
### See Also
3030

31-
* [npm install](/cli-commands/install)
32-
* [npm link](/cli-commands/link)
31+
* [npm install](/cli-commands/npm-install)
32+
* [npm link](/cli-commands/npm-link)
3333
* [npm scripts](/using-npm/scripts)
3434
* [package.json](/configuring-npm/package-json)

deps/npm/docs/content/cli-commands/npm-bundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Just use `npm install` now to do what `npm bundle` used to do.
1818

1919
### See Also
2020

21-
* [npm install](/cli-commands/install)
21+
* [npm install](/cli-commands/npm-install)

0 commit comments

Comments
 (0)