Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Aug 17, 2022
1 parent 860fa47 commit ff6e4c6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/core/core/src/requests/AssetGraphRequest.js
Expand Up @@ -612,10 +612,7 @@ export class AssetGraphBuilder {
} else if (reexportedSymbols.has(s)) {
// Forward a reexport only if the current asset is side-effect free.
if (!assetNode.value.sideEffects) {
incomingDep.usedSymbolsUp.set(
s,
nullthrows(reexportedSymbols.get(s)),
);
incomingDep.usedSymbolsUp.set(s, reexportedSymbols.get(s));
} else {
incomingDep.usedSymbolsUp.set(s, {
asset: assetNode.id,
Expand Down

0 comments on commit ff6e4c6

Please sign in to comment.