Closed bcambel closed 9 years ago
@bcambel I could not reproduce this. Is this still an issue for you? Are you using the template as it is or have you maybe changed the ClojureScript version?
I was using 0.0-3308 ( not exactly remember if I changed it or not ). I didn't get the exception with the latest version of Clojurescript ["1.7.48"]
This doesn't seem to be a problem anymore.
I get this exception with the latest version of Clojurescript, with the dependency [reagent "0.5.0"]
.
@mcdemarco Do you also get this exception when starting the repl right after creating a new project with this template without modifying anything or adding any additional dependencies?
No. I did notice that just adding the dependency with no code changes keeps the repl from starting up, although it doesn't throw the error in that case.
@mcdemarco This seems to be a dependency problem. Reagent 0.5.0
uses ClojureScript 0.0-2816
, which didn't have pprint
support yet. Upgrading to the most recent version of reagent (0.5.1-rc2
) or explicitly excluding ClojureScript when adding reagent as a dependency to your project should solve this problem, e.g. [reagent "0.5.0" :exclusions [[org.clojure/clojurescript]]]
.