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
Release latest version with handleRejections property
Otherwise setting handleRejections property in options, during transport creation won't work
handleRejections
const assert = require('assert'); const transport = new transports.Console({ handleExceptions: true, handleRejections: true, }); assert(transport.handleExceptions === true); // Works assert(transport.handleRejections === true); // Fails
The text was updated successfully, but these errors were encountered:
is there any reason why this hasn't been released yet??
Sorry, something went wrong.
I also saw handleRejections cannot be set with the latest release but it's already documented the README.
I see that fix is released
No branches or pull requests
Release latest version with handleRejections property
Otherwise setting
handleRejections
property in options, during transport creation won't workThe text was updated successfully, but these errors were encountered: