Skip to content

Commit

Permalink
feat: drop support for node 8 (#570)
Browse files Browse the repository at this point in the history
BREAKING CHANGE
  • Loading branch information
G-Rath committed May 9, 2020
1 parent 8b2568b commit 0c5e314
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [8.x, 10.x, 12.x, 13.x]
node-version: [10.x, 12.x, 13.x, 14.x]
eslint-version: [5, 6]
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -5,6 +5,6 @@ module.exports = {
plugins: ['replace-ts-export-assignment'],
presets: [
'@babel/preset-typescript',
['@babel/preset-env', { targets: { node: 8 } }],
['@babel/preset-env', { targets: { node: 10 } }],
],
};
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -20,7 +20,7 @@
],
"main": "lib/",
"engines": {
"node": ">=8"
"node": ">=10"
},
"peerDependencies": {
"eslint": ">=5"
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -3,6 +3,7 @@
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es2018"],
"noEmit": true,
"noImplicitReturns": true,
"strict": true,
Expand Down

0 comments on commit 0c5e314

Please sign in to comment.