Skip to content

Commit

Permalink
feat: drop support for node v12 (#5918)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
drops support for node v12
  • Loading branch information
bradzacher committed Nov 23, 2022
1 parent 426d6b6 commit 7e3fe9a
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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.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": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.0.0"
},
"types": "types/index.d.ts",
"main": "dist/index.js",
Expand Down

0 comments on commit 7e3fe9a

Please sign in to comment.