From 5b4cb0d33731a58384e02ad51e703e7dcb00e424 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 31 Oct 2016 18:38:35 +0100 Subject: [PATCH] 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. --- .travis.yml | 1 - 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; } -- 2.39.5