mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 03:48:13 +08:00
fix(monorepo/desktop): fix missing express-partial-content
This commit is contained in:
parent
01121f991e
commit
0aa55ddebc
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ function copyNodeModules(packageJsonPath: string) {
|
|||
// Skip monorepo packages
|
||||
packageJson.dependencies = Object.fromEntries(
|
||||
Object.entries(packageJson.dependencies).filter(([key]) => {
|
||||
return !key.startsWith("@triliumnext");
|
||||
return (key === "@triliumnext/express-partial-content" || !key.startsWith("@triliumnext"));
|
||||
}));
|
||||
|
||||
// Trigger an npm install to obtain the dependencies.
|
||||
|
|
Loading…
Add table
Reference in a new issue