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

Drop support for Node.js 6 #4006

Merged
merged 1 commit into from Apr 4, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions .travis.yml
Expand Up @@ -18,18 +18,15 @@ cache:

matrix:
include:
- node_js: '8'
- node_js: '10'
script: npm run pretest
env: CI=pretest
- node_js: '8'
- node_js: '10'
script: npm run jest -- --maxWorkers=2 --coverage
env: CI=coverage
- node_js: '10'
script: npm run jest -- --maxWorkers=2
env: CI=tests 10
- node_js: '6'
- node_js: '8'
script: npm run jest -- --maxWorkers=2
env: CI=tests 6
env: CI=tests 8

before_install:
- npm install -g npm@latest
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-guide/prerequisites.md
Expand Up @@ -2,7 +2,7 @@

## Technical

- [Node.js](https://nodejs.org/en/) 4.2.1+.
- [Node.js](https://nodejs.org/en/) 8.15.1+.
- Latest [npm](https://www.npmjs.com/).

## Rules of thumb
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,7 +36,7 @@
"!flow-typed/npm"
],
"engines": {
"node": ">=6"
"node": ">=8.15.1"
},
"dependencies": {
"autoprefixer": "^9.0.0",
Expand Down