This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-04
Channels
- # beginners (46)
- # boot (65)
- # cider (8)
- # cljs-dev (5)
- # cljsrn (4)
- # clojure (50)
- # clojure-conj (2)
- # clojure-france (1)
- # clojure-greece (18)
- # clojure-russia (8)
- # clojure-spec (39)
- # clojure-uk (36)
- # clojurescript (36)
- # clr (16)
- # component (2)
- # cursive (6)
- # datascript (3)
- # datomic (31)
- # devcards (2)
- # editors-rus (1)
- # emacs (15)
- # events (2)
- # figwheel (1)
- # funcool (24)
- # garden (3)
- # hoplon (22)
- # instaparse (15)
- # leiningen (3)
- # luminus (4)
- # om (59)
- # onyx (24)
- # overtone (1)
- # pedestal (3)
- # planck (18)
- # prelude (1)
- # protorepl (2)
- # re-frame (5)
- # rum (1)
- # sql (1)
- # uncomplicate (1)
- # untangled (66)
- # vim (18)
- # yada (4)
Hi, I'm trying to trun clairvoyant debug, I'm following this: https://github.com/Day8/re-frame/wiki/Debugging, but can't make it work. I'm using figwheel; Is there anyone who managed to turn it on with figwheel? I tried several combinations in project.clj, with optimizations :none, :whitespace, etc. Maybe someone knows an open source project with right configuration. My js/clairvoyant.core.devmode is 'false' - I assume it should be 'true' if I'd configure it properly? :cljsbuild {:builds {:app {:source-paths ["src/cljc" "src/cljs" "env/dev/cljs" "resources/locale"] :compiler {:main "blabla.app" :asset-path "/js/out" :output-to "target/cljsbuild/public/js/app.js" :output-dir "target/cljsbuild/public/js/out" :optimizations :none :closure-defines {"goog.DEBUG" true "clairvoyant.core.devmode" true}
@skuteli try {'clairvoyant.core.devmode true}
- it requires symbols rather than strings iirc - i've had it working with boot-reload rather than figwheel, but i think it should be the same
@decoursin Well, re-frame is a ClojureScript library. What is it that you have in mind exactly? Building Java Swing/FX UIs? Server state management similar to the re-frame app-db?