Skip to content

Commit

Permalink
build(target): remove support for Node.js v6
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This removes support for Node v6 and makes the new minimum runtime Node v8, as v6
is EOL as of April, 2019. Please upgrade your Node.js environment to at least version 8, or
continue using the latest v6 release of `pwned` if you are unable to upgrade your environment.
  • Loading branch information
wKovacs64 committed Mar 20, 2019
1 parent 3fc1b24 commit be8dfa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
'@babel/preset-env',
{
targets: {
node: 6,
node: 8,
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"homepage": "https://wkovacs64.github.io/pwned",
"engines": {
"node": ">= 6.4.0"
"node": ">= 8"
},
"dependencies": {
"hibp": "^7.5.0",
Expand Down

0 comments on commit be8dfa9

Please sign in to comment.