Fork me on GitHub
#cljs-dev
<
2015-07-23
>
dnolen20:07:43

a lot of progress on bootstrapped ClojureScript on the flight to TXJS

dnolen20:07:32

custom macros work! (i.e. not just core ones)

bensu21:07:07

@dnolen: I'm looking at docs generators like codox and codeina. They heavily rely on cljs.analyzer internals and it is not surprised they mysteriously broke at some cljs version bump (~`0..0-2985`). Are docs generators something the cljs.analyzer.api should cator to? Or is it something that should be handled by some other tool, like tools.namespaces?

bensu21:07:21

s/cator/cater

dnolen21:07:47

anything that relies on cljs.analyzer is asking to get broken all the time, yes should use api instead. If something is missing, it should get added.

bensu21:07:24

@dnolen, right, so cljs.anaylzer.api is the place for something like a doc generator. Thanks! I hope not much is needed.