-
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.
PR-URL: #14235 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
1,042 changed files
with
45,758 additions
and
19,643 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @npm/cli-team |
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 |
---|---|---|
|
@@ -475,3 +475,31 @@ Jason Wohlgemuth <[email protected]> | |
Ryan Graham <[email protected]> | ||
Hirse <[email protected]> | ||
Colin Rotherham <[email protected]> | ||
Aki <[email protected]> | ||
Emily Marigold Klassen <[email protected]> | ||
Ramana Venkata <[email protected]> | ||
kierendixon <[email protected]> | ||
Rácz Tibor Zoltán <[email protected]> | ||
Guangcong Luo <[email protected]> | ||
Steven <[email protected]> | ||
Jan Pilzer <[email protected]> | ||
Leonard Martin <[email protected]> | ||
Teddy Katz <[email protected]> | ||
Simon Legg <[email protected]> | ||
Kin Lum <[email protected]> | ||
dax <[email protected]> | ||
Jože Mlakar <[email protected]> | ||
happylynx <[email protected]> | ||
Dominic Watson <[email protected]> | ||
Enrico Weigelt, metux IT consult <[email protected]> | ||
Brian Beck <[email protected]> | ||
Ramana Venkata <[email protected]> | ||
mmkal <[email protected]> | ||
Andrew Schmadel <[email protected]> | ||
AJ Jordan <[email protected]> | ||
Mark Banner <[email protected]> | ||
Richard Simko <[email protected]> | ||
Sanketh Katta <[email protected]> | ||
Tim Needham <[email protected]> | ||
leonardo rojas <[email protected]> | ||
Mark Peter Fejes <[email protected]> |
This file was deleted.
Oops, something went wrong.
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 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/sh | ||
(set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix | ||
|
||
basedir=`dirname "$0"` | ||
|
||
case `uname` in | ||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
NODE_EXE="$basedir/node.exe" | ||
if ! [ -x "$NODE_EXE" ]; then | ||
NODE_EXE=node | ||
fi | ||
|
||
NPX_CLI_JS="$basedir/node_modules/npm/bin/npx-cli.js" | ||
|
||
case `uname` in | ||
*MINGW*) | ||
NPM_PREFIX=`"$NODE_EXE" "$NPX_CLI_JS" prefix -g` | ||
NPM_PREFIX_NPX_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npx-cli.js" | ||
if [ -f "$NPM_PREFIX_NPX_CLI_JS" ]; then | ||
NPX_CLI_JS="$NPM_PREFIX_NPX_CLI_JS" | ||
fi | ||
;; | ||
*CYGWIN*) | ||
NPM_PREFIX=`"$NODE_EXE" "$NPX_CLI_JS" prefix -g` | ||
NPM_PREFIX_NPX_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npx-cli.js" | ||
if [ -f "$NPM_PREFIX_NPX_CLI_JS" ]; then | ||
NPX_CLI_JS="$NPM_PREFIX_NPX_CLI_JS" | ||
fi | ||
;; | ||
esac | ||
|
||
"$NODE_EXE" "$NPX_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env node | ||
|
||
const npx = require('libnpx') | ||
const path = require('path') | ||
|
||
const NPM_PATH = path.join(__dirname, 'npm-cli.js') | ||
|
||
npx(npx.parseArgs(process.argv, NPM_PATH)) |
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,19 @@ | ||
:: 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 "NPX_CLI_JS=%~dp0\node_modules\npm\bin\npx-cli.js" | ||
FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPX_CLI_JS%" prefix -g') DO ( | ||
SET "NPM_PREFIX_NPX_CLI_JS=%%F\node_modules\npm\bin\npx-cli.js" | ||
) | ||
IF EXIST "%NPM_PREFIX_NPX_CLI_JS%" ( | ||
SET "NPX_CLI_JS=%NPM_PREFIX_NPX_CLI_JS%" | ||
) | ||
|
||
"%NODE_EXE%" "%NPX_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
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.