diff --git a/bin/copy-trilium.sh b/bin/copy-trilium.sh index 45421dc47..cc5a6342c 100755 --- a/bin/copy-trilium.sh +++ b/bin/copy-trilium.sh @@ -32,8 +32,9 @@ cp webpack-* $DIR/ # cleanup of useless files in dependencies rm -r $DIR/node_modules/image-q/demo rm -r $DIR/node_modules/better-sqlite3/deps/sqlite3.tar.gz -rm -r $DIR/node_modules/@jimp/plugin* +rm -r $DIR/node_modules/@jimp/plugin-print/fonts rm -r $DIR/node_modules/jimp/browser +rm -r $DIR/node_modules/jimp/fonts # delete all tests (there are often large images as test file for jimp etc.) find $DIR/node_modules -name test -exec rm -rf {} \; diff --git a/src/services/note_cache/entities/attribute.js b/src/services/note_cache/entities/attribute.js index 7fa412506..55c449177 100644 --- a/src/services/note_cache/entities/attribute.js +++ b/src/services/note_cache/entities/attribute.js @@ -1,6 +1,6 @@ "use strict"; -import Note from './note.js'; +const Note = require('./note.js'); class Attribute { constructor(noteCache, row) { diff --git a/src/services/note_cache/entities/branch.js b/src/services/note_cache/entities/branch.js index dda388fe4..0e19fdaf0 100644 --- a/src/services/note_cache/entities/branch.js +++ b/src/services/note_cache/entities/branch.js @@ -1,6 +1,6 @@ "use strict"; -import Note from "./note.js"; +const Note = require('./note.js'); class Branch { constructor(noteCache, row) {