Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: drop support of Node 6 #4703

Merged
merged 3 commits into from
Mar 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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