Skip to content

Commit 6b3dbf7

Browse files
committed
set fixed
1 parent 2f67555 commit 6b3dbf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

umd/src/System.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,14 @@ class System {
169169
let index = 0;
170170
for (const iterator of module.dependencies) {
171171

172-
iterator.linkExports(setters[index++]);
172+
const set = setters[index++];
173173

174174
if (iterator.isResolved) {
175+
set(iterator.getExports());
175176
continue;
176177
}
177178

179+
iterator.linkExports(set);
178180
if (iterator.isDependentOn(module)) {
179181
isCircularDependency = true;
180182
continue;

0 commit comments

Comments
 (0)