can they both observe the same observable? It doesn't seem like it, since currentObserver would be different in both scenarios. I was forced to pass a singe observer object around. This seems like a big limitation, am I missing something obvious, or is there an elegant way you handle this inside nx-framework?
If 2 different modules require this lib like so
const observer = require("@nx-js/observer-util"); //module-a
const observer = require("@nx-js/observer-util"); //module-b
can they both observe the same observable? It doesn't seem like it, since
currentObserver
would be different in both scenarios. I was forced to pass a singeobserver
object around. This seems like a big limitation, am I missing something obvious, or is there an elegant way you handle this inside nx-framework?