From aaa000df2e859e4e9ac4c2d354b5b17e2fdc4048 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Wed, 7 Mar 2018 14:12:26 -0800 Subject: [PATCH] misc: drop support of Node 6 (#4703) --- .appveyor.yml | 6 +++--- .travis.yml | 2 -- lighthouse-extension/package.json | 2 +- lighthouse-viewer/package.json | 2 +- package.json | 2 +- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0fdf6363400e..b24f9680246c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,11 +9,11 @@ branches: environment: fast_finish: true matrix: - - nodejs_version: "6" + - nodejs_version: "8" platform: x86 - # node 7 is skipped, as appveyor only allows 1 concurrent job + # other Node versions are skipped, as appveyor only allows 1 concurrent job # and we want appveyor finishing ASAP. see #2382 - # - nodejs_version: "7" + # - nodejs_version: "9" # platform: x86 build: off diff --git a/.travis.yml b/.travis.yml index f7cf0b8e5a74..fd76256970e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,7 @@ branches: - master matrix: include: - - node_js: "6.9.1" - node_js: "8" - if: head_branch IS blank AND branch = master - node_js: "9" if: head_branch IS blank AND branch = master dist: trusty diff --git a/lighthouse-extension/package.json b/lighthouse-extension/package.json index 3cf1b4caf77b..d54f18969142 100644 --- a/lighthouse-extension/package.json +++ b/lighthouse-extension/package.json @@ -2,7 +2,7 @@ "name": "lighthouse-extension", "private": true, "engines": { - "node": ">=6" + "node": ">=8" }, "scripts": { "watch": "gulp watch", diff --git a/lighthouse-viewer/package.json b/lighthouse-viewer/package.json index 8b403aedeeb3..28b85d816c5e 100644 --- a/lighthouse-viewer/package.json +++ b/lighthouse-viewer/package.json @@ -2,7 +2,7 @@ "name": "lighthouse-viewer", "private": true, "engines": { - "node": ">=6" + "node": ">=8" }, "scripts": { "watch": "gulp watch", diff --git a/package.json b/package.json index dec9fbe14c05..0d7fbe9f093d 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "chrome-debug": "./chrome-launcher/manual-chrome-launcher.js" }, "engines": { - "node": ">=6" + "node": ">=8" }, "scripts": { "install-all": "npm-run-posix-or-windows install-all:task",