corepack icon indicating copy to clipboard operation
corepack copied to clipboard

perf: Improve the performance by running ion concurrent 🚀

Open sanjaiyan-dev opened this issue 1 year ago • 0 comments

This PR uses Promise.all to speed things up!

Currently, some parts of the code wait for each other to finish before starting. Promise.all lets them run at the same time, making the app faster.

Benefits:

  • Blazing fast app (especially for many independent tasks)
  • Cleaner code

sanjaiyan-dev avatar Jun 12 '24 21:06 sanjaiyan-dev