chore(desktop): fix version

This commit is contained in:
Elian Doran
2025-05-27 22:26:52 +03:00
parent 8e4b3711d4
commit ef6eac6f6e
3 changed files with 5 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ function getVersion(packageJsonPath: string) {
function main() {
const version = getVersion(join(__dirname, "..", "package.json"));
for (const appName of ["server", "client"]) {
for (const appName of ["server", "client", "desktop"]) {
patchPackageJson(join(__dirname, "..", "apps", appName, "package.json"), version);
}