Michael Bromley
Michael Bromley
Hi, I'm not sure - but if you'd like to try a proof-of-concept then I'd be interested to hear if you get it to work, and we can consider incorporating...
I'm not really familiar with the internal workings of HMR, but I don't think the EventBus should be involved since that is for events that occur within the system itself,...
Paging @martijnvdbrug - when you get time can you share your opinion on this? You're now much more familiar with this plugin than I am :)
Could either of you try this with the latest v2.2.x? We made improvements to the handling of refunds in 2.2. Let me know if the issue is still there.
This is because Yarn v1.x does not support the optionalDependencies feature that the latest versions of Sharp use to distribute platform-specific binaries. The solution is to move away from Yarn...
I migrated the `minor` branch to use npm rather than yarn. Modern Yarn versions should also be fine too.
Closing in favour of: - https://github.com/vendure-ecommerce/vendure/issues/2439
Adding plugins to vendure-config, giving error "Nest can't resolve dependencies of the ConfigModule"
Hi @tschortsch, what dependencies does your custom plugin have?
Adding plugins to vendure-config, giving error "Nest can't resolve dependencies of the ConfigModule"
The reason is that, since your plugin is part of an existing Vendure project (which already has all the dependencies), your plugin does not need its own dependencies. Your plugin...
Adding plugins to vendure-config, giving error "Nest can't resolve dependencies of the ConfigModule"
This is related to the way imports are resolved in node. The closest node_modules in the directory tree is checked first, and then upwards until the root directory is reached....