lein-figwheel

pgarrett 2018-02-13T02:38:05.000256Z

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?

bhauman 2018-02-13T13:14:47.000281Z

@pgarrett this is always the tools reader dep

bhauman 2018-02-13T13:16:56.000353Z

https://github.com/bhauman/rebel-readline/issues/87

bhauman 2018-02-13T13:17:31.000168Z

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

👍 1
pgarrett 2018-02-13T19:37:36.000707Z

That was it. Thanks!