Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat: drop support for node v8 (#1997)
  • Loading branch information
bradzacher committed May 21, 2020
1 parent 5b23443 commit b6c3b7b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -140,7 +140,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
node-version: [10.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -51,7 +51,7 @@
]
},
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-tslint/package.json
Expand Up @@ -11,7 +11,7 @@
"tslint"
],
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Expand Up @@ -9,7 +9,7 @@
"typescript"
],
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/experimental-utils/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Expand Up @@ -10,7 +10,7 @@
"LICENSE"
],
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-estree/package.json
Expand Up @@ -10,7 +10,7 @@
"LICENSE"
],
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
"node": "^10.12.0 || >=12.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b6c3b7b

Please sign in to comment.