You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently the process installs sequentially wordpress plugins and then themes. as far as wordpress is right, it needs to be installed sincronously but the plugins and themes could be installed concurrently
The text was updated successfully, but these errors were encountered:
Refactored the code in install.js to execute plugins and themes installation concurrently. Removed individual `Promise.all()` calls for each plugin and theme and instead created a single `Promise.all()` to handle all install promises. This will significantly increase the installation speed by running these processes parallelly instead of sequentially.
close#9
currently the process installs sequentially wordpress plugins and then themes. as far as wordpress is right, it needs to be installed sincronously but the plugins and themes could be installed concurrently
The text was updated successfully, but these errors were encountered: