Skip to content

Commit

Permalink
deps: upgrade npm to 6.14.6
Browse files Browse the repository at this point in the history
PR-URL: #34246
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
  • Loading branch information
claudiahdz authored and MylesBorins committed Jul 16, 2020
1 parent d2c5894 commit 24f76cf
Show file tree
Hide file tree
Showing 239 changed files with 908 additions and 728 deletions.
4 changes: 4 additions & 0 deletions deps/npm/AUTHORS
Expand Up @@ -695,3 +695,7 @@ Jarda Snajdr <jsnajdr@gmail.com>
Naix Geng <1308363651@qq.com>
Dylan Treisman <dylanzt@gmail.com>
mum-never-proud <abhuz@hotmail.com>
Peter Fich <peterfich@users.noreply.github.com>
Maxwell Gerber <mgerber@berkeley.edu>
Sean Poulter <sean.poulter@gmail.com>
vanishcode <vanishcode@outlook.com>
22 changes: 22 additions & 0 deletions deps/npm/CHANGELOG.md
@@ -1,3 +1,25 @@
## 6.14.6 (2020-07-07)

### BUG FIXES
* [`a9857b8f6`](https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc) chore: remove auth info from logs ([@claudiahdz](https://github.com/claudiahdz))
* [`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))

### DEPENDENCIES
* [`94eca6377`](https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee) `npm-registry-fetch@4.0.5` ([@claudiahdz](https://github.com/claudiahdz))
* [`c49b6ae28`](https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705) [#1418](https://github.com/npm/cli/pull/1418) `spdx-license-ids@3.0.5` ([@kemitchell](https://github.com/kemitchell))

### DOCUMENTATION
* [`2e052984b`](https://github.com/npm/cli/commit/2e052984b08c09115ed75387fb2c961631d85d77)
[#1459](https://github.com/npm/cli/pull/1459)
chore(docs): fixed links to cli commands ([@claudiahdz](https://github.com/claudiahdz))
* [`0ca3509ca`](https://github.com/npm/cli/commit/0ca3509ca940865392daeeabb39192f7d5af9f5e)
[#1283](https://github.com/npm/cli/pull/1283) Update npm-link.md ([@peterfich](https://github.com/peterfich))
* [`3dd429e9a`](https://github.com/npm/cli/commit/3dd429e9aad760ce2ff9e522b34ebfebd85b460c)
[#1377](https://github.com/npm/cli/pull/1377)
Add note about dropped `*` filenames ([@maxwellgerber](https://github.com/maxwellgerber))
* [`9a2e2e797`](https://github.com/npm/cli/commit/9a2e2e797e5c91e7f4f261583a1906e2c440cc2f)
[#1429](https://github.com/npm/cli/pull/1429) Fix typo ([@seanpoulter](https://github.com/seanpoulter))

## 6.14.5 (2020-05-01)

### BUG FIXES
Expand Down
4 changes: 3 additions & 1 deletion deps/npm/bin/npm-cli.js
Expand Up @@ -28,6 +28,7 @@
var npm = require('../lib/npm.js')
var npmconf = require('../lib/config/core.js')
var errorHandler = require('../lib/utils/error-handler.js')
var replaceInfo = require('../lib/utils/replace-info.js')

var configDefs = npmconf.defs
var shorthands = configDefs.shorthands
Expand All @@ -40,7 +41,8 @@
process.argv.splice(1, 1, 'npm', '-g')
}

log.verbose('cli', process.argv)
var args = replaceInfo(process.argv)
log.verbose('cli', args)

var conf = nopt(types, shorthands)
npm.argv = conf.argv.remain
Expand Down
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-access.md
Expand Up @@ -87,7 +87,7 @@ Management of teams and team memberships is done with the `npm team` command.
### See Also
* [`libnpmaccess`](https://npm.im/libnpmaccess)
* [npm team](/cli-commands/team)
* [npm publish](/cli-commands/publish)
* [npm config](/cli-commands/config)
* [npm team](/cli-commands/npm-team)
* [npm publish](/cli-commands/npm-publish)
* [npm config](/cli-commands/npm-config)
* [npm registry](/using-npm/registry)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-adduser.md
Expand Up @@ -89,7 +89,7 @@ username/password entry in legacy npm.
### See Also

* [npm registry](/using-npm/registry)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [npm owner](/cli-commands/owner)
* [npm whoami](/cli-commands/whoami)
* [npm owner](/cli-commands/npm-owner)
* [npm whoami](/cli-commands/npm-whoami)
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-audit.md
Expand Up @@ -131,6 +131,6 @@ configuration setting.

### See Also

* [npm install](/cli-commands/install)
* [npm install](/cli-commands/npm-install)
* [package-locks](/configuring-npm/package-locks)
* [config](/using-npm/config)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-bin.md
Expand Up @@ -19,8 +19,8 @@ Print the folder where npm will install executables.

### See Also

* [npm prefix](/cli-commands/prefix)
* [npm root](/cli-commands/root)
* [npm prefix](/cli-commands/npm-prefix)
* [npm root](/cli-commands/npm-root)
* [npm folders](/configuring-npm/folders)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
8 changes: 4 additions & 4 deletions deps/npm/docs/content/cli-commands/npm-bugs.md
Expand Up @@ -41,10 +41,10 @@ The base URL of the npm package registry.

### See Also

* [npm docs](/cli-commands/docs)
* [npm view](/cli-commands/view)
* [npm publish](/cli-commands/publish)
* [npm docs](/cli-commands/npm-docs)
* [npm view](/cli-commands/npm-view)
* [npm publish](/cli-commands/npm-publish)
* [npm registry](/using-npm/registry)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [package.json](/configuring-npm/package-json)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-build.md
Expand Up @@ -28,7 +28,7 @@ directly, run:

### See Also

* [npm install](/cli-commands/install)
* [npm link](/cli-commands/link)
* [npm install](/cli-commands/npm-install)
* [npm link](/cli-commands/npm-link)
* [npm scripts](/using-npm/scripts)
* [package.json](/configuring-npm/package-json)
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-bundle.md
Expand Up @@ -18,4 +18,4 @@ Just use `npm install` now to do what `npm bundle` used to do.

### See Also

* [npm install](/cli-commands/install)
* [npm install](/cli-commands/npm-install)
8 changes: 4 additions & 4 deletions deps/npm/docs/content/cli-commands/npm-cache.md
Expand Up @@ -82,10 +82,10 @@ The root cache folder.
### See Also

* [npm folders](/configuring-npm/folders)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [npm install](/cli-commands/install)
* [npm publish](/cli-commands/publish)
* [npm pack](/cli-commands/pack)
* [npm install](/cli-commands/npm-install)
* [npm publish](/cli-commands/npm-publish)
* [npm pack](/cli-commands/npm-pack)
* https://npm.im/cacache
* https://npm.im/pacote
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-ci.md
Expand Up @@ -45,7 +45,7 @@ cache:

### Description

This command is similar to [`npm install`](/cli-commands/install), except it's meant to be used in
This command is similar to [`npm install`](/cli-commands/npm-install), except it's meant to be used in
automated environments such as test platforms, continuous integration, and
deployment -- or any situation where you want to make sure you're doing a clean
install of your dependencies. It can be significantly faster than a regular npm
Expand All @@ -63,5 +63,5 @@ In short, the main differences between using `npm install` and `npm ci` are:

### See Also

* [npm install](/cli-commands/install)
* [npm install](/cli-commands/npm-install)
* [package-locks](/configuring-npm/package-locks)
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-config.md
Expand Up @@ -79,7 +79,7 @@ global config.
### See Also

* [npm folders](/configuring-npm/folders)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [package.json](/configuring-npm/package-json)
* [npmrc](/configuring-npm/npmrc)
* [npm](/cli-commands/npm)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-dedupe.md
Expand Up @@ -62,6 +62,6 @@ result in new modules being installed.

### See Also

* [npm ls](/cli-commands/ls)
* [npm update](/cli-commands/update)
* [npm install](/cli-commands/install)
* [npm ls](/cli-commands/npm-ls)
* [npm update](/cli-commands/npm-update)
* [npm install](/cli-commands/npm-install)
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-deprecate.md
Expand Up @@ -32,5 +32,5 @@ format an empty string.

### See Also

* [npm publish](/cli-commands/publish)
* [npm publish](/cli-commands/npm-publish)
* [npm registry](/using-npm/registry)
8 changes: 4 additions & 4 deletions deps/npm/docs/content/cli-commands/npm-dist-tag.md
Expand Up @@ -92,9 +92,9 @@ begin with a number or the letter `v`.

### See Also

* [npm publish](/cli-commands/publish)
* [npm install](/cli-commands/install)
* [npm dedupe](/cli-commands/dedupe)
* [npm publish](/cli-commands/npm-publish)
* [npm install](/cli-commands/npm-install)
* [npm dedupe](/cli-commands/npm-dedupe)
* [npm registry](/using-npm/registry)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-docs.md
Expand Up @@ -44,9 +44,9 @@ The base URL of the npm package registry.
### See Also
* [npm view](/cli-commands/view)
* [npm publish](/cli-commands/publish)
* [npm view](/cli-commands/npm-view)
* [npm publish](/cli-commands/npm-publish)
* [npm registry](/using-npm/registry)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [package.json](/configuring-npm/package-json)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-doctor.md
Expand Up @@ -106,6 +106,6 @@ cache, you should probably run `npm cache clean` and reset the cache.

### See Also

* [npm bugs](/cli-commands/bugs)
* [npm help](/cli-commands/help)
* [npm ping](/cli-commands/ping)
* [npm bugs](/cli-commands/npm-bugs)
* [npm help](/cli-commands/npm-help)
* [npm ping](/cli-commands/npm-ping)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-edit.md
Expand Up @@ -41,7 +41,7 @@ The command to run for `npm edit` or `npm config edit`.
### See Also

* [npm folders](/configuring-npm/folders)
* [npm explore](/cli-commands/explore)
* [npm install](/cli-commands/install)
* [npm config](/cli-commands/config)
* [npm explore](/cli-commands/npm-explore)
* [npm install](/cli-commands/npm-install)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
8 changes: 4 additions & 4 deletions deps/npm/docs/content/cli-commands/npm-explore.md
Expand Up @@ -44,7 +44,7 @@ The shell to run for the `npm explore` command.
### See Also

* [npm folders](/configuring-npm/folders)
* [npm edit](/cli-commands/edit)
* [npm rebuild](/cli-commands/rebuild)
* [npm build](/cli-commands/build)
* [npm install](/cli-commands/install)
* [npm edit](/cli-commands/npm-edit)
* [npm rebuild](/cli-commands/npm-rebuild)
* [npm build](/cli-commands/npm-build)
* [npm install](/cli-commands/npm-install)
8 changes: 4 additions & 4 deletions deps/npm/docs/content/cli-commands/npm-fund.md
Expand Up @@ -61,8 +61,8 @@ If there are multiple funding sources, which 1-indexed source URL to open.

## See Also

* [npm docs](/cli-commands/docs)
* [npm config](/cli-commands/config)
* [npm install](/cli-commands/install)
* [npm ls](/cli-commands/ls)
* [npm docs](/cli-commands/npm-docs)
* [npm config](/cli-commands/npm-config)
* [npm install](/cli-commands/npm-install)
* [npm ls](/cli-commands/npm-ls)

2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-help-search.md
Expand Up @@ -40,4 +40,4 @@ If false, then help-search will just list out the help topics found.
### See Also

* [npm](/cli-commands/npm)
* [npm help](/cli-commands/help)
* [npm help](/cli-commands/npm-help)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-help.md
Expand Up @@ -38,7 +38,7 @@ Set to `"browser"` to view html help content in the default web browser.

* [npm](/cli-commands/npm)
* [npm folders](/configuring-npm/folders)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [package.json](/configuring-npm/package-json)
* [npm help-search](/cli-commands/help-search)
* [npm help-search](/cli-commands/npm-help-search)
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-init.md
Expand Up @@ -70,5 +70,5 @@ will create a scoped package.

* <https://github.com/isaacs/init-package-json>
* [package.json](/configuring-npm/package-json)
* [npm version](/cli-commands/version)
* [npm version](/cli-commands/npm-version)
* [npm scope](/using-npm/scope)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-install-ci-test.md
Expand Up @@ -22,5 +22,5 @@ This command runs an `npm ci` followed immediately by an `npm test`.

### See Also

* [npm ci](/cli-commands/ci)
* [npm test](/cli-commands/test)
* [npm ci](/cli-commands/npm-ci)
* [npm test](/cli-commands/npm-test)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-install-test.md
Expand Up @@ -31,5 +31,5 @@ takes exactly the same arguments as `npm install`.

### See Also

* [npm install](/cli-commands/install)
* [npm test](/cli-commands/test)
* [npm install](/cli-commands/npm-install)
* [npm test](/cli-commands/npm-test)
24 changes: 12 additions & 12 deletions deps/npm/docs/content/cli-commands/npm-install.md
Expand Up @@ -32,15 +32,15 @@ common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional] [-E|--save-exa
This command installs a package, and any packages that it depends on. If the
package has a package-lock or shrinkwrap file, the installation of dependencies
will be driven by that, with an `npm-shrinkwrap.json` taking precedence if both
files exist. See [package-lock.json](/configuring-npm/package-lock-json) and [`npm shrinkwrap`](/cli-commands/shrinkwrap).
files exist. See [package-lock.json](/configuring-npm/package-lock-json) and [`npm shrinkwrap`](/cli-commands/npm-shrinkwrap).

A `package` is:

* a) a folder containing a program described by a [`package.json`](/configuring-npm/package-json) file
* b) a gzipped tarball containing (a)
* c) a url that resolves to (b)
* d) a `<name>@<version>` that is published on the registry (see [`registry`](/using-npm/registry)) with (c)
* e) a `<name>@<tag>` (see [`npm dist-tag`](/cli-commands/dist-tag)) that points to (d)
* e) a `<name>@<tag>` (see [`npm dist-tag`](/cli-commands/npm-dist-tag)) that points to (d)
* f) a `<name>` that has a "latest" tag satisfying (e)
* g) a `<git remote url>` that resolves to (a)

Expand Down Expand Up @@ -503,17 +503,17 @@ affects a real use-case, it will be investigated.
### See Also
* [npm folders](/configuring-npm/folders)
* [npm update](/cli-commands/update)
* [npm audit](/cli-commands/audit)
* [npm fund](/cli-commands/fund)
* [npm link](/cli-commands/link)
* [npm rebuild](/cli-commands/rebuild)
* [npm update](/cli-commands/npm-update)
* [npm audit](/cli-commands/npm-audit)
* [npm fund](/cli-commands/npm-fund)
* [npm link](/cli-commands/npm-link)
* [npm rebuild](/cli-commands/npm-rebuild)
* [npm scripts](/using-npm/scripts)
* [npm build](/cli-commands/build)
* [npm config](/cli-commands/config)
* [npm build](/cli-commands/npm-build)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [npm registry](/using-npm/registry)
* [npm dist-tag](/cli-commands/dist-tag)
* [npm uninstall](/cli-commands/uninstall)
* [npm shrinkwrap](/cli-commands/shrinkwrap)
* [npm dist-tag](/cli-commands/npm-dist-tag)
* [npm uninstall](/cli-commands/npm-uninstall)
* [npm shrinkwrap](/cli-commands/npm-shrinkwrap)
* [package.json](/configuring-npm/package-json)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-link.md
Expand Up @@ -86,7 +86,7 @@ npm link @myorg/privatepackage

* [npm developers](/using-npm/developers)
* [package.json](/configuring-npm/package-json)
* [npm- nstall](/cli-commands/install)
* [npm install](/cli-commands/npm-install)
* [npm folders](/configuring-npm/folders)
* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
6 changes: 3 additions & 3 deletions deps/npm/docs/content/cli-commands/npm-logout.md
Expand Up @@ -48,7 +48,7 @@ npm logout --scope=@myco

### See Also

* [npm adduser](/cli-commands/adduser)
* [npm adduser](/cli-commands/npm-adduser)
* [npm registry](/using-npm/registry)
* [npm config](/cli-commands/config)
* [npm whoami](/cli-commands/whoami)
* [npm config](/cli-commands/npm-config)
* [npm whoami](/cli-commands/npm-whoami)
12 changes: 6 additions & 6 deletions deps/npm/docs/content/cli-commands/npm-ls.md
Expand Up @@ -119,11 +119,11 @@ Set it to false in order to use all-ansi output.

### See Also

* [npm config](/cli-commands/config)
* [npm config](/cli-commands/npm-config)
* [npmrc](/configuring-npm/npmrc)
* [npm folders](/configuring-npm/folders)
* [npm install](/cli-commands/install)
* [npm link](/cli-commands/link)
* [npm prune](/cli-commands/prune)
* [npm outdated](/cli-commands/outdated)
* [npm update](/cli-commands/update)
* [npm install](/cli-commands/npm-install)
* [npm link](/cli-commands/npm-link)
* [npm prune](/cli-commands/npm-prune)
* [npm outdated](/cli-commands/npm-outdated)
* [npm update](/cli-commands/npm-update)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-outdated.md
Expand Up @@ -118,7 +118,7 @@ Max depth for checking dependency tree.

### See Also

* [npm update](/cli-commands/update)
* [npm dist-tag](/cli-commands/dist-tag)
* [npm update](/cli-commands/npm-update)
* [npm dist-tag](/cli-commands/npm-dist-tag)
* [npm registry](/using-npm/registry)
* [npm folders](/configuring-npm/folders)
4 changes: 2 additions & 2 deletions deps/npm/docs/content/cli-commands/npm-owner.md
Expand Up @@ -41,7 +41,7 @@ with `--otp`.

### See Also

* [npm publish](/cli-commands/publish)
* [npm publish](/cli-commands/npm-publish)
* [npm registry](/using-npm/registry)
* [npm adduser](/cli-commands/adduser)
* [npm adduser](/cli-commands/npm-adduser)
* [npm disputes](/using-npm/disputes)

0 comments on commit 24f76cf

Please sign in to comment.