I’m trying out shadow-cljs with om. My simple app fails to add-root! because the reconciler record fails the (implements? p/IReconciler x) check in om.next. has anyone seen anything like this before?
I can work around it my calling the underlying p/add-root! fn. I wonder if this is shadow-cljs specific
@steveb8n Are you also using ClojureScript 1.10.238? If so, then you'd need to build and use current master of Om which addresses the issue.
that’s a good question. I don’t have explicit cljs deps in project or shadow-cljs.edn but I am using shadow 2.2.26 so I guess it must have an implicit cljs version. I’ll dig deeper
and I’ll try the master om. thanks. I didn’t think of or try that yet
Oh, there is also a beta3 that has been released.
ah yes I can see that version here https://github.com/thheller/shadow-cljs/blob/master/project.clj
I’ll give the beta3 a try and will report back
@mfikes that has worked, although not 100%. no more complaints about the reconciler so that’s a good start. I’ll keep digging
FWIW, om-next beta3 and devcards fully works with shadow 2.2.26. thanks again @mfikes