Skip to content

Commit e1a012f

Browse files
othiym23evanlucas
authored andcommitted
deps: upgrade npm to 3.8.3
1 parent b07bc5d commit e1a012f

File tree

701 files changed

+19551
-17311
lines changed

Some content is hidden

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

701 files changed

+19551
-17311
lines changed

deps/npm/.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Forbes Lindesay <[email protected]>
2323
2424
Gabriel Barros <[email protected]>
2525
Geoff Flarity <[email protected]> <gflarity@raptvm-x02.(none)>
26+
Ifeanyi Oraelosi <[email protected]>
2627
Isaac Z. Schlueter <[email protected]> <[email protected]>
2728
Isaac Z. Schlueter <[email protected]> isaacs <[email protected]>
2829
Jake Verbaten <[email protected]>
@@ -59,3 +60,4 @@ Will Elwood <[email protected]>
5960
Wout Mertens <[email protected]>
6061
Yeonghoon Park <[email protected]>
6162
Zeke Sikelianos <[email protected]>
63+
Zoujie Wzj <[email protected]>

deps/npm/.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ npm-debug.log
77
/test/packages/npm-test-depends-on-spark/which-spark.log
88
/test/packages/test-package/random-data.txt
99
/test/root
10+
/test/npm_cache
1011
node_modules/marked
1112
node_modules/ronn
1213
node_modules/tap

deps/npm/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ before_install:
1313
- "node . install -g ."
1414
- "mkdir -p /var/run/couchdb"
1515
sudo: false
16-
script: "npm run-script test-all"
16+
script: "npm test"
1717
notifications:
1818
slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8

deps/npm/AUTHORS

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,3 +364,21 @@ Jan Schär <[email protected]>
364364
365365
366366
Prayag Verma <[email protected]>
367+
Neil Kistner <[email protected]>
368+
Zoujie Wzj <[email protected]>
369+
Ryan Hendrickson <[email protected]>
370+
Arturo Coronel <[email protected]>
371+
Hutson Betts <[email protected]>
372+
Lewis Cowper <[email protected]>
373+
Adam Byrne <[email protected]>
374+
Ifeanyi Oraelosi <[email protected]>
375+
Robert Ludwig <[email protected]>
376+
Chris Warren <[email protected]>
377+
Scott Plumlee <[email protected]>
378+
Daniel Pedersen <[email protected]>
379+
380+
doug.wade <[email protected]>
381+
382+
GriffinSchneider <[email protected]>
383+
Andres Kalle <[email protected]>
384+
thefourtheye <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 469 additions & 7 deletions
Large diffs are not rendered by default.

deps/npm/Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,18 +160,23 @@ test: doc
160160
tag:
161161
npm tag npm@$(PUBLISHTAG) latest
162162

163-
publish: link doc
163+
ls-ok:
164+
node . ls >/dev/null
165+
166+
gitclean:
167+
git clean -fd
168+
169+
publish: gitclean ls-ok link doc
164170
@git push origin :v$(shell npm -v) 2>&1 || true
165-
git clean -fd &&\
166171
git push origin $(BRANCH) &&\
167172
git push origin --tags &&\
168173
npm publish --tag=$(PUBLISHTAG)
169174

170-
release: markedclean marked-manclean doc-clean doc
175+
release: gitclean ls-ok markedclean marked-manclean doc-clean doc
171176
node cli.js prune --production
172177
@bash scripts/release.sh
173178

174179
sandwich:
175180
@[ $$(whoami) = "root" ] && (echo "ok"; echo "ham" > sandwich) || (echo "make it yourself" && exit 13)
176181

177-
.PHONY: all latest install dev link doc clean uninstall test man doc-clean docclean release
182+
.PHONY: all latest install dev link doc clean uninstall test man doc-clean docclean release ls-ok realclean

deps/npm/bin/npm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ fi
1515
NPM_CLI_JS="$basedir/node_modules/npm/bin/npm-cli.js"
1616

1717
case `uname` in
18+
*MINGW*)
19+
NPM_PREFIX=`"$NODE_EXE" "$NPM_CLI_JS" prefix -g`
20+
NPM_PREFIX_NPM_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npm-cli.js"
21+
if [ -f "$NPM_PREFIX_NPM_CLI_JS" ]; then
22+
NPM_CLI_JS="$NPM_PREFIX_NPM_CLI_JS"
23+
fi
24+
;;
1825
*CYGWIN*)
1926
NPM_PREFIX=`"$NODE_EXE" "$NPM_CLI_JS" prefix -g`
2027
NPM_PREFIX_NPM_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npm-cli.js"

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ npm-adduser(1) -- Add a registry user account
55

66
npm adduser [--registry=url] [--scope=@orgname] [--always-auth]
77

8+
aliases: login, add-user
9+
810
## DESCRIPTION
911

1012
Create or verify a user named `<username>` in the specified registry, and
@@ -57,9 +59,11 @@ registries. Can be used with `--registry` and / or `--scope`, e.g.
5759
npm adduser --registry=http://private-registry.example.com --always-auth
5860

5961
This will ensure that all requests to that registry (including for tarballs)
60-
include an authorization header. See `always-auth` in `npm-config(7)` for more
61-
details on always-auth. Registry-specific configuration of `always-auth` takes
62-
precedence over any global configuration.
62+
include an authorization header. This setting may be necessary for use with
63+
private registries where metadata and package tarballs are stored on hosts with
64+
different hostnames. See `always-auth` in `npm-config(7)` for more details on
65+
always-auth. Registry-specific configuration of `always-auth` takes precedence
66+
over any global configuration.
6367

6468
## SEE ALSO
6569

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ npm-bugs(1) -- Bugs for a package in a web browser maybe
55

66
npm bugs [<pkgname>]
77

8+
aliases: issues
9+
810
## DESCRIPTION
911

1012
This command tries to guess at the likely location of a package's

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ npm-config(1) -- Manage the npm configuration files
1111
npm get <key>
1212
npm set <key> <value> [-g|--global]
1313

14+
aliases: c
15+
1416
## DESCRIPTION
1517

1618
npm gets its config settings from the command line, environment

0 commit comments

Comments
 (0)