Skip to content

Commit 92eacdb

Browse files
zkatevanlucas
authored andcommitted
deps: upgrade npm to 4.0.5
PR-URL: #10330 Reviewed-By: Myles Borins <myles.borins@gmail.com>
1 parent 7ad0f7b commit 92eacdb

File tree

719 files changed

+38691
-13904
lines changed

Some content is hidden

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

719 files changed

+38691
-13904
lines changed

deps/npm/.travis.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ matrix:
1313
env: DEPLOY_VERSION=testing COVERALLS_REPO_TOKEN="$COVERALLS_OPTIONAL_TOKEN"
1414
script:
1515
- "node . run tap-cover -- \"test/tap/*.js\""
16-
- "unset COVERALLS_REPO_TOKEN ; node . run tap -- \"test/slow/*.js\" \"test/broken-under-*/*.js\""
16+
- "unset COVERALLS_REPO_TOKEN ; node . run tap -- \"test/broken-under-*/*.js\""
1717
# previous LTS is next most important
1818
- node_js: "4"
1919
env: DEPLOY_VERSION=testing
2020
# then master
2121
- node_js: "7"
2222
env: DEPLOY_VERSION=testing
23+
# then 0.12, which is still in maintenance mode until the end of 2016 I guess?
24+
# https://github.com/nodejs/LTS#lts-schedule
25+
- node_js: "0.12"
26+
env: DEPLOY_VERSION=testing
2327
before_install:
2428
# required by test/tap/registry.js
2529
- "mkdir -p /var/run/couchdb"
@@ -29,6 +33,7 @@ cache:
2933
directories:
3034
- $HOME/.npm
3135
- node_modules/.bin
36+
- node_modules/.cache
3237
- node_modules/deep-equal
3338
- node_modules/marked
3439
- node_modules/marked-man
@@ -45,4 +50,4 @@ install:
4550
- "node . install --ignore-scripts"
4651
- "make -j4 doc"
4752
script:
48-
- "node . run tap -- \"test/tap/*.js\" \"test/slow/*.js\" \"test/broken-under-nyc/*.js\""
53+
- "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\""

deps/npm/AUTHORS

+10
Original file line numberDiff line numberDiff line change
@@ -435,3 +435,13 @@ Ionică Bizău <bizauionica@gmail.com>
435435
Alex Chesters <AlexChesters@users.noreply.github.com>
436436
Robert Gay <robert.gay@redfin.com>
437437
Steven <stevokk@hotmail.com>
438+
Tim Caswell <tim@creationix.com>
439+
Anna Henningsen <github@addaleax.net>
440+
Kim Røen <kim@kimroen.com>
441+
Douglas Wilson <dougwilson@live.com>
442+
Mike Engel <mike@mike-engel.com>
443+
baderbuddy <baderbuddy@gmail.com>
444+
Alex Jordan <alex@strugee.net>
445+
Ville Lahdenvuo <tuhoojabotti@gmail.com>
446+
Natalie Wolfe <nwolfe@newrelic.com>
447+
Andrew Schmadel <aschmadel@learningobjects.com>

deps/npm/CHANGELOG.md

+577-5,160
Large diffs are not rendered by default.

deps/npm/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
npm(1) -- a JavaScript package manager
22
==============================
3-
[![Build Status](https://img.shields.io/travis/npm/npm/master.svg)](https://travis-ci.org/npm/npm)
3+
[![Build Status](https://img.shields.io/travis/npm/npm/latest.svg)](https://travis-ci.org/npm/npm)
44
## SYNOPSIS
55

66
This is just enough info to get you up and running.
@@ -27,15 +27,15 @@ terms of use for the default public registry are available at
2727

2828
## Super Easy Install
2929

30-
npm is bundled with [node](http://nodejs.org/download/).
30+
npm is bundled with [node](https://nodejs.org/en/download/).
3131

3232
### Windows Computers
3333

34-
[Get the MSI](http://nodejs.org/download/). npm is in it.
34+
[Get the MSI](https://nodejs.org/en/download/). npm is in it.
3535

3636
### Apple Macintosh Computers
3737

38-
[Get the pkg](http://nodejs.org/download/). npm is in it.
38+
[Get the pkg](https://nodejs.org/en/download/). npm is in it.
3939

4040
### Other Sorts of Unices
4141

@@ -156,7 +156,7 @@ When you find issues, please report them:
156156
Be sure to include *all* of the output from the npm command that didn't work
157157
as expected. The `npm-debug.log` file is also helpful to provide.
158158

159-
You can also look for isaacs in #node.js on irc://irc.freenode.net. He
159+
You can also look for isaacs in #node.js on irc://irc.freenode.net. She
160160
will no doubt tell you to put the output in a gist or email.
161161

162162
## SEE ALSO

deps/npm/bin/npm-cli.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@
1616

1717
process.title = 'npm'
1818

19+
var unsupported = require('../lib/utils/unsupported.js')
20+
unsupported.checkForBrokenNode()
21+
1922
var log = require('npmlog')
2023
log.pause() // will be unpaused when config is loaded.
21-
2224
log.info('it worked if it ends with', 'ok')
2325

26+
unsupported.checkForUnsupportedNode()
27+
2428
var path = require('path')
2529
var npm = require('../lib/npm.js')
2630
var npmconf = require('../lib/config/core.js')

0 commit comments

Comments
 (0)