Fork me on GitHub
#boot
<
2017-03-29
>
dominicm07:03:38

Is it possible to speed up initial cljs build time? Particularly when nothing has changed?

dm314:03:13

what’s the proper way to set *warn-on-reflection* via a build.boot? I’d like it to be set when the repl server starts

alandipert15:03:08

@dm3 in your build.boot? alternatively you could do like boot repl -e '(set! *warn-on-reflection* true)'

alandipert15:03:51

altho i suppose in the latter example thats setting it when the client runs, not the server

Joe R. Smith17:03:06

good morning. I’m using the boot-npm and boot-exec tasks to install npm packages, generate a package.json and then run npm build run. The last of those can’t find the package.json generated by the previous. I’ve confirmed, using show, that package.json is indeed in the fileset. Anything obvious I’m missing? `(comp (npm/npm :install {:storm-react-diagrams "https://github.com/solussd/react-diagrams/tarball/master" :react "15.4.2" :react-dom "15.4.2"} :include true) ; includes package.json in the fileset (exec/exec :process "npm" :arguments ["run" “build”]))`

Joe R. Smith17:03:17

oops, meant that to be a snippet