From 3c786a39f0595c1f3234b3591ffe12d3b66c1f0b Mon Sep 17 00:00:00 2001 From: Ben Watson Date: Fri, 11 Dec 2020 13:54:03 -0500 Subject: [PATCH 1/2] bumps the supported node version to 10+ --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8dade5c..56d29227 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ CLI for working with the ALKS service. ### Prerequisites -To install and use the ALKS CLI, you will need Node.js (version 4 or greater) and NPM ([nodejs.org](https://nodejs.org/en/download/package-manager)). +To install and use the ALKS CLI, you will need Node.js (version 10 or greater) and NPM ([nodejs.org](https://nodejs.org/en/download/package-manager)). ## Installing diff --git a/package.json b/package.json index eb644bee..41ca15f3 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "test": "./node_modules/.bin/mocha ./test" }, "engines": { - "node": ">=4.0.0" + "node": ">=10.0.0" }, "repository": { "type": "git", From 4310f95733de1495341bc6c9a3e0e0948cf43e66 Mon Sep 17 00:00:00 2001 From: Ben Watson Date: Fri, 11 Dec 2020 14:03:04 -0500 Subject: [PATCH 2/2] updates travis yml --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 32b3976e..0abec7bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - "node" - - "8" - - "7" - - "6" \ No newline at end of file + - "14" + - "12" + - "10" \ No newline at end of file