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 tool and all of its dependencies are using sync calls to execute everything. While that is easy to maintain, work with from a development point of view, it does come with some issues. One of those issues is CPU use during long running processes, e.g. when executing npm install with an execSync.
In order to combat this we should
Adopt asyncawait so we can have the same "sync" syntax and go async so we can unblock the process.
The text was updated successfully, but these errors were encountered:
Currently the tool and all of its dependencies are using
sync
calls to execute everything. While that is easy to maintain, work with from a development point of view, it does come with some issues. One of those issues is CPU use during long running processes, e.g. when executingnpm install
with anexecSync
.In order to combat this we should
async
await
so we can have the same "sync" syntax and go async so we can unblock the process.The text was updated successfully, but these errors were encountered: