diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-10-31 18:38:35 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-10-31 18:38:35 +0100 |
commit | 5b4cb0d33731a58384e02ad51e703e7dcb00e424 (patch) | |
tree | baf6c4a6165f79868d0bfc3d433f6f9f13a220d0 | |
parent | fedc1aa690cceb8396a10fb7dfbb4efe5f5ce26b (diff) | |
download | jquery-5b4cb0d33731a58384e02ad51e703e7dcb00e424.tar.gz jquery-5b4cb0d33731a58384e02ad51e703e7dcb00e424.zip |
Build: Stop testing on Node.js 0.10
Node.js 0.10 loses upstream support today (see https://github.com/nodejs/LTS/)
so let's stop testing against it as well.
-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; } |