-
Notifications
You must be signed in to change notification settings - Fork 1
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
UI-7198 - Fix running the CLI with Node 16 #18
UI-7198 - Fix running the CLI with Node 16 #18
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems very surprising to me. A quick Google Search did not yield any result for me, but could you find something about Yargs not exiting in recent versions of Node?
I didn't find anything related between Yargs not exiting and recent versions of Node. |
@antoinetissier the only thing related to this prob that I found : lukeed/uvu#124. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving since I don't have any better suggestions 👍🏻.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not quite satisfying, but let's get it.
The problem is explained in the ticket description: UI-7198
I haven't found a better solution than to call
process.exit
manually.In particular, I have researched things like "yargs Node 16 process not exiting", and the polyfill warnings, and I did not find any related issue.
To test, having this merged would have been helpful, so I'm glad we're in the process of adding it.
In the meantime, you can use
npm link
: