Skip to content

Commit

Permalink
fix: typescript-estree does not support Node.js LTS (#9619)
Browse files Browse the repository at this point in the history
## Description

Patch `@typescript-eslint/typescript-estree` to support node 18.12 (LTS)
  • Loading branch information
mergify[bot] authored Jun 30, 2024
2 parents efd3370 + 8aafdcf commit 54b2e2b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/@typescript-eslint+typescript-estree+7.13.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/node_modules/@typescript-eslint/typescript-estree/package.json b/node_modules/@typescript-eslint/typescript-estree/package.json
index 3a1b7a2..8c8c9f2 100644
--- a/node_modules/@typescript-eslint/typescript-estree/package.json
+++ b/node_modules/@typescript-eslint/typescript-estree/package.json
@@ -22,7 +22,7 @@
},
"types": "./dist/index.d.ts",
"engines": {
- "node": "^18.18.0 || >=20.0.0"
+ "node": "^18.12 || >=20.0.0"
},
"repository": {
"type": "git",

0 comments on commit 54b2e2b

Please sign in to comment.