Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
deps: upgrade npm to 7.7.4
PR-URL: #37897 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
with
1,001 additions
and 2,204 deletions.
- +2 −0 deps/npm/AUTHORS
- +77 −0 deps/npm/CHANGELOG.md
- +1 −0 deps/npm/docs/content/commands/npm-find-dupes.md
- +11 −3 deps/npm/docs/content/using-npm/config.md
- +1 −1 deps/npm/docs/output/commands/npm-ls.html
- +1 −1 deps/npm/docs/output/commands/npm.html
- +11 −4 deps/npm/docs/output/using-npm/config.html
- +1 −0 deps/npm/lib/audit.js
- +8 −3 deps/npm/lib/ci.js
- +5 −0 deps/npm/lib/config.js
- +1 −0 deps/npm/lib/dedupe.js
- +10 −2 deps/npm/lib/exec.js
- +7 −6 deps/npm/lib/install.js
- +8 −1 deps/npm/lib/link.js
- +5 −3 deps/npm/lib/prune.js
- +11 −0 deps/npm/lib/set-script.js
- +10 −6 deps/npm/lib/uninstall.js
- +1 −0 deps/npm/lib/update.js
- +50 −36 deps/npm/lib/utils/config/definitions.js
- +1 −1 deps/npm/man/man1/npm-ls.1
- +1 −1 deps/npm/man/man1/npm.1
- +15 −3 deps/npm/man/man7/config.7
- +1 −0 deps/npm/node_modules/@npmcli/disparity-colors/CHANGELOG.md
- +2 −1 deps/npm/node_modules/@npmcli/disparity-colors/README.md
- +6 −2 deps/npm/node_modules/cli-table3/node_modules/string-width/index.js
- +1 −1 deps/npm/node_modules/cli-table3/node_modules/string-width/package.json
- +1 −1 deps/npm/node_modules/cli-table3/node_modules/string-width/readme.md
- +1 −1 deps/npm/node_modules/diff/README.md
- +32 −0 deps/npm/node_modules/env-paths/index.d.ts
- +1 −1 deps/npm/node_modules/env-paths/package.json
- +44 −5 deps/npm/node_modules/env-paths/readme.md
- +1 −1 deps/npm/node_modules/hosted-git-info/git-host-info.js
- +1 −1 deps/npm/node_modules/hosted-git-info/package.json
- +1 −0 deps/npm/node_modules/libnpmdiff/CHANGELOG.md
- +3 −2 deps/npm/node_modules/libnpmdiff/README.md
- +8 −0 deps/npm/node_modules/mime-db/HISTORY.md
- +3 −3 deps/npm/node_modules/mime-db/README.md
- +74 −3 deps/npm/node_modules/mime-db/db.json
- +9 −9 deps/npm/node_modules/mime-db/package.json
- +9 −0 deps/npm/node_modules/mime-types/HISTORY.md
- +0 −10 deps/npm/node_modules/mime-types/README.md
- +7 −7 deps/npm/node_modules/mime-types/package.json
- +0 −185 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/CHANGELOG.md
- +0 −13 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/LICENSE
- +0 −133 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/README.md
- +0 −154 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/git-host-info.js
- +0 −110 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/git-host.js
- +0 −237 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/index.js
- +0 −52 deps/npm/node_modules/normalize-package-data/node_modules/hosted-git-info/package.json
- +0 −185 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/CHANGELOG.md
- +0 −13 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/LICENSE
- +0 −133 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/README.md
- +0 −154 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/git-host-info.js
- +0 −110 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/git-host.js
- +0 −237 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/index.js
- +0 −52 deps/npm/node_modules/npm-package-arg/node_modules/hosted-git-info/package.json
- +1 −1 deps/npm/node_modules/npm-pick-manifest/CHANGELOG.md
- +1 −0 deps/npm/node_modules/resolve/test/mock_sync.js
- +1 −1 deps/npm/node_modules/retry/Readme.md
- +20 −6 deps/npm/node_modules/socks/README.md
- +68 −22 deps/npm/node_modules/socks/build/client/socksclient.js
- +1 −1 deps/npm/node_modules/socks/build/client/socksclient.js.map
- +10 −2 deps/npm/node_modules/socks/build/common/constants.js
- +1 −1 deps/npm/node_modules/socks/build/common/constants.js.map
- +27 −0 deps/npm/node_modules/socks/build/common/helpers.js
- +1 −1 deps/npm/node_modules/socks/build/common/helpers.js.map
- +8 −8 deps/npm/node_modules/socks/package.json
- +5 −0 deps/npm/node_modules/socks/typings/client/socksclient.d.ts
- +10 −1 deps/npm/node_modules/socks/typings/common/constants.d.ts
- +4 −4 deps/npm/node_modules/uuid/README.md
- +2 −2 deps/npm/package.json
- +1 −0 deps/npm/tap-snapshots/test-lib-utils-config-definitions.js-TAP.test.js
- +11 −3 deps/npm/tap-snapshots/test-lib-utils-config-describe-all.js-TAP.test.js
- +241 −241 deps/npm/tap-snapshots/test-lib-utils-npm-usage.js-TAP.test.js
- +1 −1 deps/npm/tap-snapshots/test-lib-utils-tar.js-TAP.test.js
- +18 −1 deps/npm/test/lib/config.js
- +4 −2 deps/npm/test/lib/install.js
- +37 −0 deps/npm/test/lib/set-script.js
- +3 −3 deps/npm/test/lib/uninstall.js
- +4 −3 deps/npm/test/lib/update.js
- +72 −13 deps/npm/test/lib/utils/config/definitions.js
- +6 −0 deps/npm/test/lib/utils/config/flatten.js
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -21,3 +21,4 @@ duplications, without actually changing the package tree. | ||
| * [npm ls](/cli-commands/ls) | ||
| * [npm update](/cli-commands/update) | ||
| * [npm install](/cli-commands/install) | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -18,6 +18,7 @@ class Audit extends BaseCommand { | ||
| /* istanbul ignore next - see test/lib/load-all-commands.js */ | ||
| static get params () { | ||
| return [ | ||
| 'audit-level', | ||
| 'dry-run', | ||
| 'force', | ||
| 'json', | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -30,6 +30,7 @@ class Dedupe extends BaseCommand { | ||
| const where = this.npm.prefix | ||
| const opts = { | ||
| ...this.npm.flatOptions, | ||
| log: this.npm.log, | ||
| path: where, | ||
| dryRun, | ||
| } | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -51,6 +51,7 @@ class Update extends BaseCommand { | ||
|
|
||
| const arb = new Arborist({ | ||
| ...this.npm.flatOptions, | ||
| log: this.npm.log, | ||
| path: where, | ||
| }) | ||
|
|
||
Oops, something went wrong.

