From 239a6157705f325aabe36eeae1fa5720b0d05a75 Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Mon, 11 Feb 2019 13:38:00 -0800 Subject: [PATCH] No longer run Node.js v4 on Travis - Jasmine should still work in Node.js v4, but the jshint task isn't working correctly --- .travis.yml | 3 --- Gruntfile.js | 6 ------ 2 files changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13b90454..f2c39016 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,9 +22,6 @@ addons: matrix: include: - - env: - - USE_SAUCE=false - - TEST_COMMAND="bash travis-node-script.sh v4" - env: - USE_SAUCE=false - TEST_COMMAND="bash travis-node-script.sh v8" diff --git a/Gruntfile.js b/Gruntfile.js index d618a7c1..2a00aa44 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -16,12 +16,6 @@ module.exports = function(grunt) { grunt.registerTask('default', ['jshint:all']); - if (/^v4\./.test(process.version)) { - grunt.registerTask('jshint', function() { - console.log('Skipping jshint for older versions of Node'); - }); - } - var version = require('./grunt/tasks/version.js'); grunt.registerTask('build:copyVersionToGem',