Closed SteffenDE closed 6 months ago
That's another issue for sure, just wanted to let you know.
That's actually a warning from polymorphic embed, I warn when you use attributes. I guess you use attributes?
I warn because compilation becomes suboptimal, as we then cannot expand the types and we create additional compile-time dependencies.
So I thought I would warn for the developer's best interest.
What do you think?
Could you actually run
mix xref graph --label compile-connected --fail-above 0
to confirm that the attributes lead to compile-time dependencies? Maybe I'm wrong.
@mathieuprog indeed that was my bad. Thank you 😃
Hi there, I'm currently in the process of migrating from my fork back to the released version. With 4.0, I noticed that the Component module is not compiled. This is caused by it being marked as
only: :test
instead of:optional
.Another issue I'm seeing is lots of
That's another issue for sure, just wanted to let you know.