Skip to content

Commit fbe748f

Browse files
committed
build(node): update node from 4.1.1 to 4.2.1
This is just a maintenance upgrade to keep us close to the latest release. No known bugs are being fixed by this upgrade. I also removed the npm override in .travis.yaml since node 4 ships with a recent version of npm and usually this version is preferred (it might contain custom patches). Closes angular#4939
1 parent 4fe1792 commit fbe748f

4 files changed

Lines changed: 6 additions & 9 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2
1+
4.2.1

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- '4.1.1'
4+
- '4.2.1'
55

66
branches:
77
except:
@@ -60,9 +60,6 @@ before_install:
6060
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && SAUCE_USERNAME="angular2-ci" && SAUCE_ACCESS_KEY="693ebc16208a-0b5b-1614-8d66-a2662f4e" || true'
6161

6262
install:
63-
# Update npm
64-
- npm install -g npm@2.14.5
65-
- npm --version
6663
# Check the size of caches
6764
- du -sh ./node_modules || true
6865
# Install npm dependecies

DEVELOPER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ following products on your development machine:
3636
[Windows](http://windows.github.com)); [GitHub's Guide to Installing
3737
Git](https://help.github.com/articles/set-up-git) is a good source of information.
3838

39-
* [Node.js](http://nodejs.org), (version `>=4.1.1 <5`) which is used to run a development web server,
39+
* [Node.js](http://nodejs.org), (version `>=4.2.1 <5`) which is used to run a development web server,
4040
run tests, and generate distributable files. We also use Node's Package Manager, `npm`
41-
(version `>=2.14.5 <3.0`), which comes with Node. Depending on your system, you can install Node either from
41+
(version `>=2.14.7 <3.0`), which comes with Node. Depending on your system, you can install Node either from
4242
source or as a pre-packaged bundle.
4343

4444
* [Chrome Canary](https://www.google.com/chrome/browser/canary.html), a version of Chrome with

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ var sauceConf = require('./sauce.conf');
4747
var os = require('os');
4848

4949
require('./tools/check-environment')({
50-
requiredNpmVersion: '>=2.14.5',
51-
requiredNodeVersion: '>=4.1.1'
50+
requiredNpmVersion: '>=2.14.7',
51+
requiredNodeVersion: '>=4.2.1'
5252
});
5353

5454
// Make it easy to quiet down portions of the build.

0 commit comments

Comments
 (0)