-
Notifications
You must be signed in to change notification settings - Fork 919
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
Eliminate Bluebird in favor of native async functionality #3662
Comments
@AbhishekReddy1127 |
Hi @Nicksqain, thank you for your interest in solving this issue! We have broken this issue into three steps, while the first step is to identify all instances where Bluebird is used in the codebase, here are some tips that can get you started: For example, i see some usages in
|
@abbyhu2000 Thanks for the answer! For example, I will create an analogue of some method, where can I save this function? Or copy it every time? |
@abbyhu2000 I don't do PRs the way you described, I made a different PR for each plugin. Could you please complete the description of the issue? and in which PR should I add changelod.md entry? |
@ananzh Is this issue closed? |
Bluebird is a open-source JavaScript library for working with asynchronous code. It is a Promise library that provides a number of useful features and enhancements to the built-in JavaScript Promise object, including performance optimizations and additional methods.
The task is to replace all instances of Bluebird with native async functionality in the codebase. This should be done using the async and await keywords, which have been natively available for over 5 years in all relevant environments. Promises have also been available for longer.
The text was updated successfully, but these errors were encountered: