Skip to content

Commit

Permalink
Merge pull request #13464 from webpack/bugfix/increment-in-sort
Browse files Browse the repository at this point in the history
increment index in sorting
  • Loading branch information
sokra committed May 27, 2021
2 parents daa0f1e + 55dacb4 commit e5c1beb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/ExportsInfo.js
Expand Up @@ -146,6 +146,7 @@ class ExportsInfo {
for (const entry of exports.values()) {
const name = namesInOrder[i];
if (entry.name !== name) break;
i++;
}
for (; i < namesInOrder.length; i++) {
const name = namesInOrder[i];
Expand Down

0 comments on commit e5c1beb

Please sign in to comment.