Hi Dendrologues ! I got the following error when p...
# questions
g
Hi Dendrologues ! I got the following error when publish from the CI using the latest cli
k
when you say the latest version, you mean 0.114.0?
g
yep !
Does this seems strange to you ? Note that it's a decently sized workspace with over 3000 notes ...
k
by any chance, is this a public repo? if so, i can try to repro on the repo. otherwise, i'll create a custom one
g
Hi @kevins8 yes it is ! Im working on a dendron to share a species list from a botanical garden ... dendron is suited fro trees 🙂
see differences between the last two commits
Hi @kevins8 could you have a look by chance ? Do you think it has to do with the number of notes or not (I ask because I am planning on working on a much larger one 150000 notes or so ... do you think this is going to be an issue ?)
k
i don't think it will but will take a look at this today!
the default memory allocation for node is 16Mib (on 64bit systems). looks like you're exceeding that with 3k notes. to work around this, you can bump up the memory allocation with the following (assuming linux environment) (sets memory limit to 16gb - you probably don't need that much)
Copy code
sh
export NODE_OPTIONS=--max-old-space-size=16192
npx dendron publish export
g
Thx ! Will try to add this to the github CI and see
Works ! Thanks @kevins8