Martin Laporte
Martin Laporte
Sorry, I haven't been much responsive, as mentioned in another issue I'm deep into house renovation work 😁 From what I remember, I added this part to copy the content...
`ResourceFolder` must point at the root of a folder containing the library in NPM format. Is that the case? I see you are passing an empty string as the path...
You need to pass the path of the resources at the very least (2nd arg of `ResourceFolder` constructor). Then it should work it they are in the proper format.
Hmm hard to say without seeing any code, but maybe you could step through the loading process in `Module` and confirm that it's indeed loading the proper file as root,...
I've seen cases before where Nashorn seemed unable to resolve a property of an object that really seems to be there. I'll try to have a look when I have...
OK pretty recent then. The one with an issue was much earlier than this (around _3x I think). Well, I'll try to have a look. Did you try "reducing" the...
To be honest I didn't had time to look deeper into this... I just bought a new house and for a few weeks every shred of spare time my job...
Wait, but it worked in Node right? Just tried your minimal sample above and if I `require` it I can definitively access the `merge` function defined inside. This lib should...
Hmm that's a fair point. It probably makes sense to expose an overload of `enable` that takes a `Binding` instead of the engine itself. If you look at the code...
Ah indeed I kinda missed that the engine was being passed to `Module`. Slightly more complex, but probably OK in the end. One thing to know keep in mind though:...