Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Suggestion
Logs:https://app.netlify.com/sites/typescript-eslint/deploys/656cda722b027400084ae549#L64-L91
This is because the latest version 18.x of Node.js (18.19.0) is being used.It contains breaking changes fortsx package used in deployment. It has been fixed ontsx side in thev4.6.1, but as I understand it, we can't just bump thetsx version, becausetsx@4doesn't support Node.js v16, although v16 it's still used in ci:
| node-version:[16, 20] |
So we can:
- Drop Node.js 16 support (it's already unmaintained) and bump tsx
- Pin Node.js version to 18.18.2 in Netlify
- Use something other than
tsx
I guess the 1 is the best option?