Fork me on GitHub
#devcards
<
2015-11-03
>
kurtlazarus02:11:50

does devcards mkdn-pprint-source macro work with om next’s defui macro?

kurtlazarus02:11:43

coudl i just call the defui* function?

martinklepsch14:11:04

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?

jannis14:11:39

@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"

jannis14:11:29

To be honest, I didn't even try without adding the option.

martinklepsch14:11:17

Looks like a good fit for :closure-defines

bhauman16:11:36

@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??

martinklepsch16:11:41

Closure-defines are just regular vars/symbols so I think that should work.

bhauman18:11:44

yeah but they are defined in ClojureScript space not Clojure space right?