fix(client): execute web workers concurrently
This commit is contained in:
committed by
mrugesh mohapatra
parent
e8f5b54d63
commit
845b966bda
@@ -95,7 +95,7 @@ async function transformSASS(element) {
|
||||
await Promise.all(
|
||||
[].map.call(styleTags, async style => {
|
||||
style.type = 'text/css';
|
||||
style.innerHTML = await sassWorker.execute(style.innerHTML, 5000);
|
||||
style.innerHTML = await sassWorker.execute(style.innerHTML, 5000).done;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user