fix: Build asset file from results sequentially

This commit is contained in:
Suraj Shetty 2021-07-05 14:10:51 +05:30
parent 3d3d8bdfca
commit 6df9fd2bf8

View file

@ -115,7 +115,7 @@ async function execute() {
log("Watching for changes...");
}
for (const result of results) {
write_assets_json(result.metafile);
await write_assets_json(result.metafile);
}
}