fix(esbuild): bug that caused apps to json to not get updated when --using-cached
This commit is contained in:
parent
2f8c7c7b0d
commit
e980de2788
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ async function update_assets_json_from_built_assets(apps) {
|
|||
const assets = await get_assets_json_path_and_obj(false);
|
||||
const assets_rtl = await get_assets_json_path_and_obj(true);
|
||||
|
||||
for (const app in apps) {
|
||||
for (const app of apps) {
|
||||
await update_assets_obj(app, assets.obj, assets_rtl.obj);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue