Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e1a012f

Browse filesBrowse files
othiym23evanlucas
authored andcommitted
deps: upgrade npm to 3.8.3
1 parent b07bc5d commit e1a012f
Copy full SHA for e1a012f

File tree

Expand file treeCollapse file tree

701 files changed

+19551
-17311
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

701 files changed

+19551
-17311
lines changed
Open diff view settings
Collapse file

‎deps/npm/.mailmap‎

Copy file name to clipboardExpand all lines: deps/npm/.mailmap
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Forbes Lindesay <forbes@lindesay.co.uk>
2323
Forrest L Norvell <ogd@aoaioxxysz.net> <forrest@npmjs.com>
2424
Gabriel Barros <descartavel1@gmail.com>
2525
Geoff Flarity <geoff.flarity@gmail.com> <gflarity@raptvm-x02.(none)>
26+
Ifeanyi Oraelosi <ifeanyioraelosi@gmail.com>
2627
Isaac Z. Schlueter <i@izs.me> <i@foohack.com>
2728
Isaac Z. Schlueter <i@izs.me> isaacs <i@izs.me>
2829
Jake Verbaten <raynos2@gmail.com>
@@ -59,3 +60,4 @@ Will Elwood <w.elwood08@gmail.com>
5960
Wout Mertens <Wout.Mertens@gmail.com>
6061
Yeonghoon Park <sola92@gmail.com>
6162
Zeke Sikelianos <zeke@sikelianos.com>
63+
Zoujie Wzj <zoujie.wzj@alibaba-inc.com>
Collapse file

‎deps/npm/.npmignore‎

Copy file name to clipboardExpand all lines: deps/npm/.npmignore
+1Lines 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
Collapse file

‎deps/npm/.travis.yml‎

Copy file name to clipboardExpand all lines: deps/npm/.travis.yml
+1-1Lines 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
Collapse file

‎deps/npm/AUTHORS‎

Copy file name to clipboardExpand all lines: deps/npm/AUTHORS
+18Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,3 +364,21 @@ Jan Schär <jscissr@gmail.com>
364364
Xcat Liu <xcatliu@gmail.com>
365365
harryh <Aourin@users.noreply.github.com>
366366
Prayag Verma <prayag.verma@gmail.com>
367+
Neil Kistner <neil.kistner@gmail.com>
368+
Zoujie Wzj <zoujie.wzj@alibaba-inc.com>
369+
Ryan Hendrickson <ryan.hendrickson@alum.mit.edu>
370+
Arturo Coronel <aoitsu3@gmail.com>
371+
Hutson Betts <hbetts@factset.com>
372+
Lewis Cowper <lewis.cowper@googlemail.com>
373+
Adam Byrne <misterbyrne@gmail.com>
374+
Ifeanyi Oraelosi <ifeanyioraelosi@gmail.com>
375+
Robert Ludwig <rob.ludwig@rideamigos.com>
376+
Chris Warren <chris@ixalon.net>
377+
Scott Plumlee <scott@plumlee.org>
378+
Daniel Pedersen <daniel@scandinav.se>
379+
rhgb <kaiserdaemon@gmail.com>
380+
doug.wade <doug.wade@redfin.com>
381+
Zac <zdoege@gm.slc.edu>
382+
GriffinSchneider <griffinschneider@gmail.com>
383+
Andres Kalle <mjomble@gmail.com>
384+
thefourtheye <thefourtheye@users.noreply.github.com>
Collapse file

‎deps/npm/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: deps/npm/CHANGELOG.md
+469-7Lines changed: 469 additions & 7 deletions
  • Display the source diff
  • Display the rich diff
Large diffs are not rendered by default.
Collapse file

‎deps/npm/Makefile‎

Copy file name to clipboardExpand all lines: deps/npm/Makefile
+9-4Lines 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
Collapse file

‎deps/npm/bin/npm‎

Copy file name to clipboardExpand all lines: deps/npm/bin/npm
+7Lines 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"
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/cli/npm-adduser.md
+7-3Lines changed: 7 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
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

Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/cli/npm-bugs.md
+2Lines changed: 2 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/doc/cli/npm-config.md
+2Lines changed: 2 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.