Fork me on GitHub
#lumo
<
2019-01-19
>
alexandergunnarson02:01:17

Also, any idea whether having a long classpath would create issues? I'm doing lumo --classpath src:<very long classpath generated within Boot> build.cljs, where build.cljs is:

(require 'lumo.build.api)
(lumo.build.api/watch "src-temp"
  {:optimizations :none, 
   :output-to "out/main.js", 
   :output-dir "out", 
   :cache-analysis true, 
   :source-map true, 
   :verbose true, 
   :watch-fn (fn [] (println "Success in watching!"))})
and
(ns blah.temp)

#?(:cljs (enable-console-print!))
(println "Hello world!")
But I just get: Building ... till there's an out-of-memory error. By contrast, when I only pass src as the classpath:
Building ...
Options passed to ClojureScript compiler: <options>
Copying <files>
Compiling <files>
... done. Elapsed 0.44 seconds
Success in watching!

alexandergunnarson02:01:26

Looks like the issue is not in lumo.build.api/watch but rather lumo.build.api/build

alexandergunnarson02:01:50

I will try to debug this at some point over the weekend but any pointers would be appreciated

alexandergunnarson02:01:40

Okay actually I just got it to compile once — Elapsed 401.48 seconds though, and similar times on recompilation even when I only change that one tiny file (`blah.temp`), which doesn't really work for me haha. So yeah I will try to fix this

alexandergunnarson17:01:20

Just opened up https://github.com/anmonteiro/lumo/issues/458 — probably going to pause work on this pending a discussion there