From 32755fa2792cf90a944eb15c018695b4bc17b4e8 Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Mon, 5 Nov 2018 08:42:30 +0100 Subject: [PATCH 1/2] ci: test Node.js 6, 8, 10 and 11 --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 08be7ec0..e649bffa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,11 @@ cache: - ~/.npm notifications: email: false -node_js: '8' +node_js: + - 'node' + - '10' + - '8' + - '6' install: npm install script: npm run validate after_success: kcd-scripts travis-after-success From 2121a243f66caec9a32a85e75c35c6c09215ccd6 Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Wed, 7 Nov 2018 09:12:15 +0100 Subject: [PATCH 2/2] chore: only Node.js 8 and newer is supported --- .travis.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e649bffa..c845ab33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,6 @@ node_js: - 'node' - '10' - '8' - - '6' install: npm install script: npm run validate after_success: kcd-scripts travis-after-success diff --git a/package.json b/package.json index 2239dbb4..a6ba74e0 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "author": "Kent C. Dodds (http://kentcdodds.com/)", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=8" }, "scripts": { "add-contributor": "kcd-scripts contributors add",