From d05635d1eb53fd47944f5781553222772e689ee0 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 24 Apr 2020 08:16:04 -0700 Subject: [PATCH] feat(Node.js): Drop support for Node.js 8 Node.js 8 is no longer supported as it reached [end of life](https://github.com/nodejs/Release#release-schedule) at the end of 2019. Connects https://github.com/pelias/pelias/issues/837 --- .travis.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 050fc72..a0d1ce2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ dist: xenial notifications: email: false node_js: - - 8 - 10 - 12 script: npm run travis diff --git a/package.json b/package.json index 4ee0b17..06456dd 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "url": "https://github.com/pelias/config/issues" }, "engines": { - "node": ">=8.0.0", + "node": ">=10.0.0", "npm": ">=1.4.3", "elasticsearch": ">=1.1.1" },