runInstaller resolves each source — local read, git clone, HTTP fetch — one at a time in a loop. For a pack manifest or a few flags pointing at several git repos, that means clones happen sequentially even though they're completely independent of each other.
Running the resolution step concurrently (Promise.all or similar) would speed up multi-asset installs noticeably, especially packs with a handful of git-hosted assets.
runInstaller resolves each source — local read, git clone, HTTP fetch — one at a time in a loop. For a pack manifest or a few flags pointing at several git repos, that means clones happen sequentially even though they're completely independent of each other.
Running the resolution step concurrently (Promise.all or similar) would speed up multi-asset installs noticeably, especially packs with a handful of git-hosted assets.