Fork me on GitHub
#lein-figwheel
<
2018-02-13
>
pgarrett02:02:05

I'm getting the No reader function for tag Inf error, and I seem to be using the correct version of clojure.tools.reader.

$ lein deps :tree | grep tools.reader
   [figwheel "0.5.14" :exclusions [[org.clojure/tools.reader]]]
   [org.clojure/core.async "0.3.443" :exclusions [[org.clojure/tools.reader]]]
 [org.clojure/tools.reader "1.2.1"]
Any ideas what else could cause the problem?

bhauman13:02:47

@pgarrett this is always the tools reader dep

bhauman13:02:31

if you have a dep that has AOT compiled classes in it, it seems possible to override the declared tools.reader

pgarrett19:02:36

That was it. Thanks!