Skip to content

Commit

Permalink
chore: require Node.js >=8.16
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Require Node.js => 8.16
  • Loading branch information
pvdlg committed Oct 15, 2019
1 parent bad6359 commit 55839b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js

node_js:
- 12
- 10
- 8
- 6
- 8.16

branches:
only:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
"node": ">=8.16"
},
"files": [
"lib/*.js",
Expand Down
2 changes: 1 addition & 1 deletion release-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = [{breaking: true, release: 'major'}].concat(
}

if (value.release.release) {
releaseRules.push(Object.assign({type}, value.release));
releaseRules.push({type, ...value.release});
}
}
},
Expand Down

0 comments on commit 55839b5

Please sign in to comment.