chore(desktop): fix version

This commit is contained in:
Elian Doran 2025-05-27 22:26:52 +03:00
parent 8e4b3711d4
commit ef6eac6f6e
No known key found for this signature in database
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@triliumnext/desktop", "name": "@triliumnext/desktop",
"version": "0.0.1", "version": "0.94.0",
"description": "Build your personal knowledge base with TriliumNext Notes", "description": "Build your personal knowledge base with TriliumNext Notes",
"private": true, "private": true,
"main": "main.cjs", "main": "main.cjs",

View File

@ -116,7 +116,9 @@
"executor": "@nx/js:node", "executor": "@nx/js:node",
"dependsOn": [ "dependsOn": [
{ {
"projects": [ "client" ], "projects": [
"client"
],
"target": "serve" "target": "serve"
}, },
"build-without-client" "build-without-client"

View File

@ -26,7 +26,7 @@ function getVersion(packageJsonPath: string) {
function main() { function main() {
const version = getVersion(join(__dirname, "..", "package.json")); 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); patchPackageJson(join(__dirname, "..", "apps", appName, "package.json"), version);
} }