I’m in the process of implementing meteorflux:dispatcher
in a current project. I’ve got a custom package, we’ll just call it blah:blah
.
So in /client/store.js
, I have the following:
let appState = new ReactiveDict();
let blah = blahExport.thing;
For some reason, I get an error about blahExport.thing
not existing, yet blahExport
is definitely being exported by the package, and thing
is an object on it. Strangely, I can fix this by changing the code to:
let appState = new ReactiveDict();
let blah = Package['blah:blah'].blahExport.thing;
What’s going on here?