-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a roll-up release that includes all changes to npm since 2.13.4. PR-URL: #3684 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
979 changed files
with
20,346 additions
and
53,262 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "4.1" | ||
- "4.0" | ||
- iojs | ||
- "0.12" | ||
- "0.10" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -302,3 +302,14 @@ Steve Klabnik <[email protected]> | |
Andrew Murray <[email protected]> | ||
Stephan Bönnemann <[email protected]> | ||
Kyle M. Tarplee <[email protected]> | ||
Derek Peterson <[email protected]> | ||
Greg Whiteley <[email protected]> | ||
murgatroid99 <[email protected]> | ||
Marcin Cieslak <[email protected]> | ||
João Reis <[email protected]> | ||
Matthew Hasbach <[email protected]> | ||
Anna Henningsen <[email protected]> | ||
Jon Hall <[email protected]> | ||
James Hartig <[email protected]> | ||
snopeks <[email protected]> | ||
Jason Kurian <[email protected]> |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
:: Created by npm, please don't edit manually. | ||
@IF EXIST "%~dp0\node.exe" ( | ||
"%~dp0\node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* | ||
) ELSE ( | ||
node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* | ||
) | ||
:: Created by npm, please don't edit manually. | ||
@ECHO OFF | ||
|
||
SETLOCAL | ||
|
||
SET "NODE_EXE=%~dp0\node.exe" | ||
IF NOT EXIST "%NODE_EXE%" ( | ||
SET "NODE_EXE=node" | ||
) | ||
|
||
SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js" | ||
FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_CLI_JS%" prefix -g') DO ( | ||
SET "NPM_PREFIX_NPM_CLI_JS=%%F\node_modules\npm\bin\npm-cli.js" | ||
) | ||
IF EXIST "%NPM_PREFIX_NPM_CLI_JS%" ( | ||
SET "NPM_CLI_JS=%NPM_PREFIX_NPM_CLI_JS%" | ||
) | ||
|
||
"%NODE_EXE%" "%NPM_CLI_JS%" %* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
npm-team(1) -- Manage organization teams and team memberships | ||
============================================================= | ||
|
||
## SYNOPSIS | ||
|
||
npm team create <scope:team> | ||
npm team destroy <scope:team> | ||
|
||
npm team add <scope:team> <user> | ||
npm team rm <scope:team> <user> | ||
|
||
npm team ls <scope>|<scope:team> | ||
|
||
npm team edit <scope:team> | ||
|
||
## DESCRIPTION | ||
|
||
Used to manage teams in organizations, and change team memberships. Does not | ||
handle permissions for packages. | ||
|
||
Teams must always be fully qualified with the organization/scope they belond to | ||
when operating on them, separated by a colon (`:`). That is, if you have a | ||
`developers` team on a `foo` organization, you must always refer to that team as | ||
`developers:foo` in these commands. | ||
|
||
* create / destroy: | ||
Create a new team, or destroy an existing one. | ||
|
||
* add / rm: | ||
Add a user to an existing team, or remove a user from a team they belong to. | ||
|
||
* ls: | ||
If performed on an organization name, will return a list of existing teams | ||
under that organization. If performed on a team, it will instead return a list | ||
of all users belonging to that particular team. | ||
|
||
## DETAILS | ||
|
||
`npm team` always operates directly on the current registry, configurable from | ||
the command line using `--registry=<registry url>`. | ||
|
||
In order to create teams and manage team membership, you must be a *team admin* | ||
under the given organization. Listing teams and team memberships may be done by | ||
any member of the organizations. | ||
|
||
Organization creation and management of team admins and *organization* members | ||
is done through the website, not the npm CLI. | ||
|
||
To use teams to manage permissions on packages belonging to your organization, | ||
use the `npm access` command to grant or revoke the appropriate permissions. | ||
|
||
## SEE ALSO | ||
|
||
* npm-access(1) | ||
* npm-registr(7) |
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
Oops, something went wrong.