Skip to content

Commit

Permalink
misc: drop support of Node 6 (#4703)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish authored Mar 7, 2018
1 parent bd2c6e6 commit aaa000d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lighthouse-extension",
"private": true,
"engines": {
"node": ">=6"
"node": ">=8"
},
"scripts": {
"watch": "gulp watch",
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lighthouse-viewer",
"private": true,
"engines": {
"node": ">=6"
"node": ">=8"
},
"scripts": {
"watch": "gulp watch",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit aaa000d

Please sign in to comment.