Skip to content

Commit 1cf47bd

Browse files
committed
wip
1 parent 63b019d commit 1cf47bd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

umd/src/System.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,10 @@ class System {
169169

170170
const set = setters[index++];
171171

172-
const setP = this.import(iterator).then(set);
172+
const setP = this.import(iterator).then((x) => {
173+
set(x);
174+
return x;
175+
});
173176

174177
if (iterator.isDependentOn(module)) {
175178
isCircularDependency = true;

0 commit comments

Comments
 (0)