From 772b529a8ebc8644ea0f925469cc65fbeabf2668 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 12 May 2015 16:05:38 -0700 Subject: [PATCH] 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. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6a2fc15e85..a7fccd0ee1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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);