Hello,
I'm experiencing a weird behavior that took me some time to figure out.
The problem as follows:
I had two startup modules. Then I added a third module and one of the other two modules stopped working suddenly. I ca'nt figure why, but maybe is because I am not setting the order properly? Here is how they are configured:
// Export name and synchronous status
exports.after = ["pouchdb"];
exports.platforms = ["browser"];
exports.synchronous = false;
// Export name and synchronous status
exports.before = ["startup"];
exports.platforms = ["browser"];
exports.synchronous = true;
This below is the problematic one
exports.after = ["pouchdb"];
exports.before = ["pouchdb-sycer"];
exports.platforms = ["browser"];
exports.synchronous = false;
Could be because two of them are asynchronous?
Thanks for any help