Skip to content

Commit d2413d6

Browse files
zkatMylesBorins
authored andcommitted
deps: upgrade npm to 6.7.0
PR-URL: #25804 Reviewed-By: Myles Borins <[email protected]>
1 parent e880904 commit d2413d6

File tree

1,221 files changed

+65415
-23830
lines changed

Some content is hidden

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

1,221 files changed

+65415
-23830
lines changed

deps/npm/AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,3 +612,10 @@ Joe Bottigliero <[email protected]>
612612
Nikolai Vavilov <[email protected]>
613613
Kelvin Jin <[email protected]>
614614
615+
Audrey Eschright <[email protected]>
616+
617+
618+
Beni von Cheni <[email protected]>
619+
Frédéric Harper <[email protected]>
620+
Johannes Würbach <[email protected]>
621+
ƇʘƁ̆ąƇ́ <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 307 additions & 2 deletions
Large diffs are not rendered by default.

deps/npm/doc/cli/npm-access.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ npm-access(1) -- Set access level on published packages
99
npm access grant <read-only|read-write> <scope:team> [<package>]
1010
npm access revoke <scope:team> [<package>]
1111

12+
npm access 2fa-required [<package>]
13+
npm access 2fa-not-required [<package>]
14+
1215
npm access ls-packages [<user>|<scope>|<scope:team>]
1316
npm access ls-collaborators [<package> [<user>]]
1417
npm access edit [<package>]
@@ -28,6 +31,10 @@ subcommand.
2831
Add or remove the ability of users and teams to have read-only or read-write
2932
access to a package.
3033

34+
* 2fa-required / 2fa-not-required:
35+
Configure whether a package requires that anyone publishing it have two-factor
36+
authentication enabled on their account.
37+
3138
* ls-packages:
3239
Show all of the packages a user or a team is able to access, along with the
3340
access level, except for read-only public packages (it won't print the whole
@@ -70,6 +77,7 @@ Management of teams and team memberships is done with the `npm team` command.
7077

7178
## SEE ALSO
7279

80+
* [`libnpmaccess`](https://npm.im/libnpmaccess)
7381
* npm-team(1)
7482
* npm-publish(1)
7583
* npm-config(7)

deps/npm/doc/cli/npm-dist-tag.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Add, remove, and enumerate distribution tags on a package:
2626
Show all of the dist-tags for a package, defaulting to the package in
2727
the current prefix.
2828

29+
This is the default action if none is specified.
30+
2931
A tag can be used when installing packages as a reference to a version instead
3032
of using a specific version number:
3133

deps/npm/doc/cli/npm-org.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
npm-org(1) -- Manage orgs
2+
===================================
3+
4+
## SYNOPSIS
5+
6+
npm org set <orgname> <username> [developer | admin | owner]
7+
npm org rm <orgname> <username>
8+
npm org ls <orgname> [<username>]
9+
10+
## EXAMPLE
11+
12+
Add a new developer to an org:
13+
```
14+
$ npm org set my-org @mx-smith
15+
```
16+
17+
Add a new admin to an org (or change a developer to an admin):
18+
```
19+
$ npm org set my-org @mx-santos admin
20+
```
21+
22+
Remove a user from an org:
23+
```
24+
$ npm org rm my-org mx-santos
25+
```
26+
27+
List all users in an org:
28+
```
29+
$ npm org ls my-org
30+
```
31+
32+
List all users in JSON format:
33+
```
34+
$ npm org ls my-org --json
35+
```
36+
37+
See what role a user has in an org:
38+
```
39+
$ npm org ls my-org @mx-santos
40+
```
41+
42+
## DESCRIPTION
43+
44+
You can use the `npm org` commands to manage and view users of an organization.
45+
It supports adding and removing users, changing their roles, listing them, and
46+
finding specific ones and their roles.
47+
48+
## SEE ALSO
49+
50+
* [Documentation on npm Orgs](https://docs.npmjs.com/orgs/)

deps/npm/doc/cli/npm-prefix.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ npm-prefix(1) -- Display prefix
88
## DESCRIPTION
99

1010
Print the local prefix to standard out. This is the closest parent directory
11-
to contain a package.json file unless `-g` is also specified.
11+
to contain a `package.json` file or `node_modules` directory, unless `-g` is
12+
also specified.
1213

1314
If `-g` is specified, this will be the value of the global prefix. See
1415
`npm-config(7)` for more detail.

deps/npm/doc/cli/npm-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ npm-token(1) -- Manage your authentication tokens
99

1010
## DESCRIPTION
1111

12-
This list you list, create and revoke authentication tokens.
12+
This lets you list, create and revoke authentication tokens.
1313

1414
* `npm token list`:
1515
Shows a table of all active authentication tokens. You can request this as

deps/npm/doc/misc/npm-index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ Log out of the registry
125125

126126
List installed packages
127127

128+
### npm-org(1)
129+
130+
Manage orgs
131+
128132
### npm-outdated(1)
129133

130134
Check for outdated packages

deps/npm/doc/misc/semver.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ As a command-line utility:
2929
```
3030
$ semver -h
3131

32-
SemVer 5.3.0
33-
3432
A JavaScript implementation of the http://semver.org/ specification
3533
Copyright Isaac Z. Schlueter
3634

@@ -54,6 +52,9 @@ Options:
5452
-l --loose
5553
Interpret versions and ranges loosely
5654

55+
-p --include-prerelease
56+
Always include prerelease versions in range matching
57+
5758
-c --coerce
5859
Coerce a string into SemVer if possible
5960
(does not imply --loose)
@@ -289,9 +290,19 @@ part ::= nr | [-0-9A-Za-z]+
289290

290291
## Functions
291292

292-
All methods and classes take a final `loose` boolean argument that, if
293-
true, will be more forgiving about not-quite-valid semver strings.
294-
The resulting output will always be 100% strict, of course.
293+
All methods and classes take a final `options` object argument. All
294+
options in this object are `false` by default. The options supported
295+
are:
296+
297+
- `loose` Be more forgiving about not-quite-valid semver strings.
298+
(Any resulting output will always be 100% strict compliant, of
299+
course.) For backwards compatibility reasons, if the `options`
300+
argument is a boolean value instead of an object, it is interpreted
301+
to be the `loose` param.
302+
- `includePrerelease` Set to suppress the [default
303+
behavior](https://github.com/npm/node-semver#prerelease-tags) of
304+
excluding prerelease tagged versions from ranges unless they are
305+
explicitly opted into.
295306

296307
Strict-mode Comparators and Ranges will be strict about the SemVer
297308
strings that they parse.

deps/npm/html/doc/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h3 id="other-sorts-of-unices">Other Sorts of Unices</h3>
3434
<p>Run <code>make install</code>. npm will be installed with node.</p>
3535
<p>If you want a more fancy pants install (a different version, customized
3636
paths, etc.) then read on.</p>
37-
<h2 id="fancy-install-unix-">Fancy Install (Unix)</h2>
37+
<h2 id="fancy-install-unix">Fancy Install (Unix)</h2>
3838
<p>There&#39;s a pretty robust install script at
3939
<a href="https://www.npmjs.com/install.sh">https://www.npmjs.com/install.sh</a>. You can download that and run it.</p>
4040
<p>Here&#39;s an example using curl:</p>
@@ -118,5 +118,5 @@ <h2 id="see-also">SEE ALSO</h2>
118118
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
119119
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
120120
</table>
121-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@6.5.0</p>
121+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@6.7.0</p>
122122

0 commit comments

Comments
 (0)