]> source.dussan.org Git - jquery.git/commitdiff
Build: Stop testing on Node.js 0.10
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 31 Oct 2016 17:38:35 +0000 (18:38 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 31 Oct 2016 17:38:35 +0000 (18:38 +0100)
Node.js 0.10 loses upstream support today (see https://github.com/nodejs/LTS/)
so let's stop testing against it as well.

.travis.yml
Gruntfile.js

index 641dd4ffb9dbb60c23a177cd4e8041d97b59bbdb..2dea0b6fa579cc4c753ff712f301cafb5f80fbb5 100644 (file)
@@ -1,7 +1,6 @@
 language: node_js
 sudo: false
 node_js:
-- "0.10"
 - "0.12"
 - "4"
 - "6"
index 7090a1af619f0367213ffbfa6b154a94903ff3fd..d2ea5104faa65159bd416ec6ffabfda44b1f2068 100644 (file)
@@ -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;
        }