diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | Gruntfile.js | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 641dd4ffb..2dea0b6fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: node_js sudo: false node_js: -- "0.10" - "0.12" - "4" - "6" diff --git a/Gruntfile.js b/Gruntfile.js index 7090a1af6..d2ea5104f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -17,8 +17,8 @@ module.exports = function( grunt ) { oldNode = /^v0\./.test( process.version ); // Support: Node.js <4 - // Skip running tasks that dropped support for Node.js 0.10 & 0.12 - // in those Node versions. + // Skip running tasks that dropped support for Node.js 0.12 + // in this Node version. function runIfNewNode( task ) { return oldNode ? "print_old_node_message:" + task : task; } |