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
Decrease complexity of vendored_packages_without_version method
It was O(n^2) because it iterated over packages_with_versions
multiple times.
Now it is O(n) because it uses a set to track versioned packages
and checks membership in constant time.
Also do a single pass in the importmap lines to find unversioned
packages.
0 commit comments