forked from segmentio/typewriter
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RudderTyper doesn't work on Node 22 #86
Comments
Hi @princed, thanks for the feedback! We'll update this to ensure compatibility with Node.js v22. |
Which command was used to run the generator? Can you please share more info on the steps? |
Basically any command, even Node 20
Node 22
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RudderTyper fails with the following error when running under Node 22, which now in Active LTS status:
That is because
assert
support has been removed from Node in favour ofwith
that is based on a more recent version of Import Attributes proposal.If I manually change all the
assert
keywords towith
, everything works as expected.The text was updated successfully, but these errors were encountered: