chore(nx): trigger client build when server is built

This commit is contained in:
Elian Doran 2025-04-24 13:34:03 +03:00
parent b3754f4263
commit a84744da30
No known key found for this signature in database
2 changed files with 11 additions and 1 deletions

View File

@ -140,6 +140,14 @@
"buildTarget": "@triliumnext/server:build:production"
}
}
},
"build": {
"dependsOn": [
{
"target": "build",
"projects": [ "client" ]
}
]
}
}
}

View File

@ -5,7 +5,9 @@
"directories": {
"doc": "docs"
},
"scripts": {},
"scripts": {
"server:build": "nx affected:build server"
},
"private": true,
"devDependencies": {
"@eslint/js": "^9.8.0",