From df164d7489b330bc3e6deaa15a095e301073690a Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 13 Mar 2019 14:10:12 -0600 Subject: [PATCH 1/2] Remove node 8.x from the build matrix We don't support Node 8 anymore. Also the build is broken. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5149c81d8..591dc4bf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,10 @@ node_js: # Current status of node versions: https://github.com/nodejs/LTS/ # We don't work with node 6 because it doesn't support package-lock # files which we need to avoid the broken version of base-x - - 8 + # + # Our minimum supported version is Node 10. - 10 + - 11 addons: chrome: stable before_install: From 789a0da176f9f7b07602a56390fd6c5cfef5da9b Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 13 Mar 2019 14:39:10 -0600 Subject: [PATCH 2/2] Remove irrelevant warning --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 591dc4bf8..0047d7524 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,6 @@ node_js: # make sure we work with a range of node versions. # # Current status of node versions: https://github.com/nodejs/LTS/ - # We don't work with node 6 because it doesn't support package-lock - # files which we need to avoid the broken version of base-x - # # Our minimum supported version is Node 10. - 10 - 11