Skip to content

Commit

Permalink
chore: drop support for node v14.17, v17 (#5971)
Browse files Browse the repository at this point in the history
feat: drop support for node v17
BREAKING CHANGE:
drops support for node v17
  • Loading branch information
bmish authored and bradzacher committed Nov 23, 2022
1 parent f424b2a commit cc62015
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"typecheck": "nx run-many --target=typecheck --all --parallel"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"devDependencies": {
"@babel/code-frame": "^7.18.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/ast-spec/package.json
Expand Up @@ -9,7 +9,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-tslint/package.json
Expand Up @@ -11,7 +11,7 @@
"tslint"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Expand Up @@ -9,7 +9,7 @@
"typescript"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.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": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Expand Up @@ -11,7 +11,7 @@
"LICENSE"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/type-utils/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-estree/package.json
Expand Up @@ -11,7 +11,7 @@
"LICENSE"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/visitor-keys/package.json
Expand Up @@ -8,7 +8,7 @@
"estree"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/website-eslint/package.json
Expand Up @@ -4,7 +4,7 @@
"private": true,
"description": "ESLint which works in browsers.",
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"types": "types/index.d.ts",
"main": "dist/index.js",
Expand Down

0 comments on commit cc62015

Please sign in to comment.