Skip to content

Commit

Permalink
feat!: drop support for node 8
Browse files Browse the repository at this point in the history
drop support for node 8. As 14 is on the horizon for LTS, 8 is no longer
a reasonable usage target

BREAKING CHANGES:
 * drop support for node 8
  • Loading branch information
esatterwhite committed Sep 13, 2020
1 parent 06f5db4 commit cacbc04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x]
node-version: [10.x, 12.x, 14.x]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/esatterwhite/node-seeli/issues"
Expand Down
3 changes: 2 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module.exports = {
}],
, ['@semantic-release/release-notes-generator', null]
, ['@semantic-release/changelog', {
changelogFile: 'CHANGELOG.md'
changelogTitle: 'Changlog'
, changelogFile: 'CHANGELOG.md'
}]
, ['@semantic-release/npm', null]
, ['@semantic-release/git', {
Expand Down

0 comments on commit cacbc04

Please sign in to comment.