Skip to content

Commit

Permalink
chore(deps): pin eslint to v8
Browse files Browse the repository at this point in the history
v9 requires Node 18.18+ while our minNodeVersion is purposely set to 18.12. The easiest fix is to avoid upgrading eslint for now.
  • Loading branch information
xiehan authored Dec 20, 2024
1 parent e9306c0 commit 481272c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ project.addDevDeps(
"@types/fs-extra",
"@action-validator/core",
"@action-validator/cli",
// @typescript-eslint v7+ requires Node.js 18.18, so we are stuck on v6
// eslint v9+ and @typescript-eslint v7+ require Node.js 18.18, so we are stuck on v8 and v6 respectively
// The below lines can probably be removed once Node 18 goes EOL and we upgrade minNodeVersion to 20
"eslint@^8",
"@typescript-eslint/eslint-plugin@^6",
"@typescript-eslint/parser@^6"
);
Expand Down

0 comments on commit 481272c

Please sign in to comment.