misc: include @notesnook/theme package when generating flatpak sources

This commit is contained in:
Abdullah Atta
2025-05-16 10:24:54 +05:00
parent 94888ad94d
commit 3acd3a87a9

View File

@@ -63,6 +63,10 @@ const directoryTree = {
ui: {
"package.json": ["packages", "ui", "package.json"],
"package-lock.json": ["packages", "ui", "package-lock.json"]
},
theme: {
"package.json": ["packages", "theme", "package.json"],
"package-lock.json": ["packages", "theme", "package-lock.json"]
}
}
};
@@ -122,6 +126,10 @@ const lockfiles = [
{
name: "ui",
path: path.join(TEMP_FOLDER, "packages", "ui", "package-lock.json")
},
{
name: "theme",
path: path.join(TEMP_FOLDER, "packages", "theme", "package-lock.json")
}
];