build(gulp): bump the required node version to 0.12.2

We ran across fatal issues with npm shrinkwrap on node 0.10.x which don't go away even with npm 2.9.x.

Upgrading node to 0.12 fixed the shrinkwrap issues. Since now we run node 0.12 on ci as well, there
is no reason for anyone to use node 0.10 during development.
This commit is contained in:
Igor Minar 2015-05-12 16:05:38 -07:00
parent 111fa60a93
commit 772b529a8e
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ var angularBuilder = {
(function checkNodeAndNpmVersions() {
var requiredNpmVersion = '>=2.9.0';
var requiredNodeVersion = '>=0.10.x'; // TODO: bump this to 0.12 once travis runs on 0.12
var requiredNodeVersion = '>=0.12.2';
exec('npm --version', function(e, stdout) {
var foundNpmVersion = semver.clean(stdout);