does devcards mkdn-pprint-source
macro work with om next’s defui
macro?
coudl i just call the defui*
function?
https://github.com/Jannis/om-next-kanban-demo/blob/master/build.boot#L37 @jannis: Hey, I have a question about your boot/devcards setup: is the line above required? How does devcards use this? Seems strange to pass things in compiler-options that’s not actually a compiler option?
@martinklepsch: I followed the "Devcards without Figwheel" instructions on http://rigsomelight.com/devcards/#!/devdemos.core - but I might be confusing what it means by "compiler options"
To be honest, I didn't even try without adding the option.
Seems it’s required: https://github.com/bhauman/devcards/blob/master/src/devcards/util/utils.clj
Looks like a good fit for :closure-defines
@martinklepsch: yeah it does, this was written before closure-defines. I want this value available on the clojure side so I have access to it in a macro. Does closure-defines work this way??
Closure-defines are just regular vars/symbols so I think that should work.
yeah but they are defined in ClojureScript space not Clojure space right?