mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
fix(monorepo/desktop): fix missing express-partial-content
This commit is contained in:
parent
01121f991e
commit
0aa55ddebc
@ -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…
x
Reference in New Issue
Block a user