We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This results in an opaque stack trace:
Thrown at: at loadESM (node:internal/process/esm_loader:79:31)
The problematic line is 383:
cb( stderr || err,
A simple fix would be to add a preceding line:
if (stderr) { stderr = new Error(stderr) } cb( stderr || err,
The text was updated successfully, but these errors were encountered:
PRs welcome!
Sorry, something went wrong.
Done.
No branches or pull requests
This results in an opaque stack trace:
The problematic line is 383:
A simple fix would be to add a preceding line:
The text was updated successfully, but these errors were encountered: