From 2815ab0fd50eda65bd77ed656c8faac7f6f99caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Mon, 13 Apr 2020 22:42:31 +0200 Subject: [PATCH] feat: require node >= 12 --- .travis.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b3f2f78c18..9bf6083679 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ sudo: false language: node_js node_js: - - '10' + - '12' env: matrix: - DATABASE_URL=postgres://postgres@localhost:5432/unleash_test TEST_DATABASE_URL=postgres://postgres@localhost:5432/unleash_test diff --git a/package.json b/package.json index 511a1fdb58..2603a96cee 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "url": "https://github.com/unleash/unleash/issues" }, "engines": { - "node": ">=8" + "node": ">=12" }, "license": "Apache-2.0", "main": "./lib/server-impl.js",