From 17f05f36a5c822fcb78c2915ea5f336f99036567 Mon Sep 17 00:00:00 2001 From: kakha urigashvili Date: Thu, 13 Feb 2020 09:49:07 -0800 Subject: [PATCH 1/2] chore: update min node version to 8.3.0 --- bin/askx.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/askx.js b/bin/askx.js index bdad6172..063cd17d 100755 --- a/bin/askx.js +++ b/bin/askx.js @@ -1,9 +1,9 @@ #!/usr/bin/env node /* eslint-disable global-require */ -if (!require('semver').gte(process.version, '6.4.0')) { +if (!require('semver').gte(process.version, '8.3.0')) { console.log('Version of node.js doesn\'t meet minimum requirement.'); - console.log('Please ensure system has node.js version 6.4.0 or higher.'); + console.log('Please ensure system has node.js version 8.3.0 or higher.'); process.exit(1); } diff --git a/package.json b/package.json index cd6fb9a7..bb9b3f02 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "askx": "bin/askx.js" }, "engines": { - "node": ">=6.4.0" + "node": ">=8.3.0" }, "license": "Apache 2.0", "repository": "alexa-labs/ask-cli", From 25c165d361e74156dbb9785ed0812fd1f0409c6b Mon Sep 17 00:00:00 2001 From: kakha urigashvili Date: Thu, 13 Feb 2020 10:22:28 -0800 Subject: [PATCH 2/2] chrome: remove node v6 from travis build --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb515445..cc958d54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: node_js node_js: - node - - "6.4" - "8" - "10"