-
-
Notifications
You must be signed in to change notification settings - Fork 299
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
@gitbeaker/cli does not work on Node 22 #3591
Comments
Shouldnt be a problem since the libs lowest version is 18! |
🚀 Issue was released in |
@jdalrymple
This happens because when https://github.com/jdalrymple/gitbeaker/blob/40.1.2/packages/cli/package.json#L34 By default, https://rollupjs.org/configuration-options/#output-importattributeskey Since |
I really thought tsup used esbuild under the hood. Im open to using instead! |
Description
I've encountered an issue where @gitbeaker/cli does not work with Node 22.
This is because the
assert
keyword has been removed in Node 22.nodejs/node#52104
Replacing it with the
with
keyword should resolve the issue, but thewith
keyword does not work on Node versions less than 18.20.0, which may affect the supported Node versions.Checklist
The text was updated successfully, but these errors were encountered: