Fork me on GitHub
#clojurescript
<
2017-05-20
>
norman00:05:18

followup: adding a foreign-libs entry in the cljsbuild with the same :provides but a different :file does seem to override

dnolen15:05:11

@norman yeah that's supported

lilactown21:05:16

is it improver to use a go-loop inside of a go block when using core.async?

assoc-in21:05:04

Is it possible to exclude files or directories from the cljs compiler that are in my source path of "src/cljs"? I have src/cljs/mobile folder that pulls in react-native code and this is causing issues with the cljsbuild with advanced optimizations. This github issue https://github.com/emezeske/lein-cljsbuild/issues/157 mentioned the existence of a :exclude key, but I can't seem to find it in the cljs compiler as an option anymore. I was hoping to be able to add a :exclude ["myapp.mobile"] to the compiler options in my project clj to not pull in files from that directory.

thheller22:05:17

@assoc-in the default recommendation is to use different :source-paths and split your sources that way

thheller22:05:56

:main is another option