This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-03-11
Channels
- # aleph (1)
- # beginners (192)
- # boot (9)
- # cider (12)
- # cljs-dev (223)
- # clojure (30)
- # clojure-brasil (3)
- # clojure-china (1)
- # clojure-italy (4)
- # clojure-russia (24)
- # clojure-spec (7)
- # clojured (5)
- # clojurescript (82)
- # cursive (9)
- # datomic (24)
- # emacs (6)
- # fulcro (9)
- # keechma (1)
- # luminus (1)
- # off-topic (3)
- # om-next (5)
- # onyx (1)
- # parinfer (9)
- # re-frame (1)
- # reitit (4)
- # ring-swagger (6)
- # shadow-cljs (8)
- # spacemacs (1)
- # sql (1)
- # unrepl (13)
Let's say I've opened an empty emacs, switched to scratch buffer and now I want to sketch some clojure.
morning from new zealand all 🙂
I'm getting a really strange error when I upgraded to clojurescript 1.10.126 from 1.10.64. It only happens via cider and not lein repl or lein run.
I can fix it by making an explicit dependency on clojure.tools.reader "1.2.2" (instead of the "1.3.0-alpha3) that gets called in by the clojurescript dependency.
That's strange. Both 1.10.64
and 1.10.126
use tools.reader 1.3.0-alpha3
:
- https://github.com/clojure/clojurescript/blob/r1.10.64/project.clj#L15
- https://github.com/clojure/clojurescript/blob/r1.10.126/project.clj#L15
I'd guess some lib of yours doesn't play nice w/ tools.reader 1.3.0-alpha3
. Something changed the classpath (perhaps you reordered your deps?) such that the newer version of tools.reader
is now manifesting itself.
Perhaps this issue is related: https://dev.clojure.org/jira/browse/CLJS-2639?focusedCommentId=48584&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-48584
Does cider depend use an internal version of clojure.tools.reader that somehow conflicts with one specified in project.clj?
error in process sentinel: Could not start nREPL server: Exception in thread "main" java.lang.ExceptionInInitializerError at clojure.main.<clinit>(main.java:20) Caused by: java.lang.IllegalAccessError: reader-error does not exist, compiling:(clojure/tools/reader/edn.clj:1:1)