I have two files, parent and child. child imports a variable from parent, and parent imports a variable from child. Changing the variable in parent will change the variable in child, but changing the variable in child will not change the variable in parent.
Is there a way I can resolve these imports without introducing any additional files?
There’s no way at all to get around this at the moment? Even with something incredibly convoluted?
The desired effect that I have is to be able to compile both parent and child, having parent act as an aggregator for multiple children and each child being a standalone thing.
I already considered a structure like parent, child, and parentview, where only parentview actually imports the children. This is an unfortunate compromise though since it adds another file and ergonomics are a huge focus for what I’m making.