This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-29
Channels
- # admin-announcements (6)
- # announcements (1)
- # beginners (1)
- # boot (104)
- # braid-chat (5)
- # cbus (1)
- # cider (2)
- # clojure (147)
- # clojure-japan (1)
- # clojure-poland (1)
- # clojure-russia (31)
- # clojurescript (16)
- # core-async (4)
- # css (2)
- # cursive (14)
- # datomic (40)
- # devcards (5)
- # dirac (100)
- # emacs (5)
- # funcool (1)
- # immutant (52)
- # juxt (4)
- # ldnclj (128)
- # lein-figwheel (12)
- # leiningen (26)
- # luminus (3)
- # mount (22)
- # off-topic (11)
- # om (144)
- # onyx (2)
- # parinfer (1)
- # proton (7)
- # re-frame (55)
- # reagent (16)
- # slack-help (5)
- # yada (1)
ah, it works for dependencies in both, it's just my project's namespaces that I can't seem to require
@jbaiter: have you resolved that require problem? I believe this is nREPL thing, dirac just uses standard nREPL connection
yes, dirac uses slightly modified piggieback, but features were added, not removed š
indeed, unfortunately I donāt see an easy way to fix this problem too many moving parts and we are building on top of āforeignā platforms
whole lein/boot stuff has java legacy, and cljs stuff must respect underlying javascript ecosystem
it is nice when it works, but when something breaks in the platform below, it is too hard for most people to deal with it
i think i'll leave that piggieback stuff be for tonight, ClassNotFoundException
for piggieback, even though its in my classpath and in the dependencies
wonder why you are adding [org.clojure/clojurescript "1.7.228ā] into :plugins, that cannot work
so that ClassNotFoundException is raised from some init code? what if you try to require it directly from repl
so it is on class path, some code somewhere is trying to require something and raises ClassNotFoundException, can you investigate what code is responsible for it?
(require 'cemerick.piggieback) (require 'weasel.repl.websocket) (cemerick.piggieback/cljs-repl (weasel.repl.websocket/repl-env :ip "0.0.0.0" :port 9001))
wait a sec, I have figwheel running in the baackground, maybe that has something to do with it
i thought i had an indentation error and :repl-options ended up inside of :cljjsbuild