[ClojureScript] Re: Compiling multiple apps from single source tree/debugging closure advanced mode

2015-06-08 Thread Thomas Heller
Hey, you could take a look at shadow-build [1]. I wrote it for exactly the use case you describe since I had that issue myself. CLJS itself will always include all source files it can find in a build which leads to your issues. shadow-build will also discover all source files but will only incl

[ClojureScript] Re: Compiling multiple apps from single source tree/debugging closure advanced mode

2015-06-08 Thread Novi Border
Great, I managed to get the build working with shadow-build, outputing three separate 'main' cljs files and two different common modules:) Thanks guys! -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are s

Re: [ClojureScript] Re: Compiling multiple apps from single source tree/debugging closure advanced mode

2015-06-08 Thread David Nolen
If all you wanted was modules and multiple entry points under advanced compilation, ClojureScript has supported that for months now (and was in fact inspired by the work in shadow-build). David On Mon, Jun 8, 2015 at 4:58 PM, Novi Border wrote: > Great, > > I managed to get the build working wi