desktop: fix flatpak sources generation

This commit is contained in:
Abdullah Atta
2025-05-15 12:17:28 +05:00
parent d599a0836f
commit 030daf12f2
3 changed files with 14 additions and 3 deletions

View File

@@ -59,6 +59,10 @@ const directoryTree = {
crypto: {
"package.json": ["packages", "crypto", "package.json"],
"package-lock.json": ["packages", "crypto", "package-lock.json"]
},
ui: {
"package.json": ["packages", "ui", "package.json"],
"package-lock.json": ["packages", "ui", "package-lock.json"]
}
}
};
@@ -114,6 +118,10 @@ const lockfiles = [
{
name: "crypto",
path: path.join(TEMP_FOLDER, "packages", "crypto", "package-lock.json")
},
{
name: "ui",
path: path.join(TEMP_FOLDER, "packages", "ui", "package-lock.json")
}
];