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

Remove node6 support, add node12 to build #1397

Merged
merged 1 commit into from May 17, 2020
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
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,9 +1,9 @@
sudo: false
language: node_js
node_js:
- "6"
- "8"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd remove support to Node 8 also

- "10"
- "12"
script:
- npm test
after_success:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -35,7 +35,7 @@
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd suggest to change it to `>=10.0.0"

},
"license": "MIT"
}