we’re running into this problem: https://github.com/bhauman/devcards/issues/99, causing a few hundred lines of warnings for us. I guess this is because devcards.core is injected by figwheel as preloads instead being required?
If you require devcards proper instead of just requiring the macros this goes away
@bhauman yes, we had that until now, but this resulted in devcards ending up in our prod builds which is undesirable
Are you using a preload?
so yeah this is an unfortunate trade off and it should only happen on the first build
its very tricky to do inline devcards
if you move the devcards into there own build this goes away
yes, we’re using devtools.preload
yeah that's not the problem
so there is this other method of making this work
actually no that wont work
ok, so you suggest moving defcards to their own namespace which is not included in the prod build?
yeah I really do
or rather that the trade off for having them inline is those darn warnings
@bhauman alright, thanks!