Fork me on GitHub
#boot
<
2017-07-10
>
martinklepsch10:07:21

re ^ I wonder if we could catch this kind of issues when loading build.boot and print a message with a rough guide for debugging this stuff? e.g. mostly -b and what to look for in the stack?

kommen14:07:15

@richiardiandrea just as a heads up, I’m just running our project with https://github.com/bhauman/lein-figwheel/pull/537 and boot-figreload and it looks pretty good

richiardiandrea15:07:30

@kommen thanks for checking! it would be awesome to write there this feedback as well

richiardiandrea15:07:22

I would like to release boot-figreload but can't without that fix...

currentoor19:07:08

Is it true that boot-cljs is slower if you split a large file into many smaller files?

xiongtx20:07:14

Can we combine tasks by invoking one task in another? E.g.

(deftask foo ...)

(deftask bar
  "foo and more"
  []
  (foo)
  ...)

alandipert20:07:03

(deftask bar [] (fn [next-task] (fn [fileset] (next-task ((foo) fileset))))) - call foo on fileset then call next task

alandipert20:07:28

(deftask bar [] (with-pre-wrap [fileset] ((foo) fileset))) - another way

alandipert20:07:57

(deftask bar [] (fn [next-task] (fn [fileset] (let [foos-fileset ((foo) fileset) new-fileset (do-stuff foos-fileset)] (next-task new-fileset)))))

alandipert20:07:47

hm, those are all broken actually

xiongtx20:07:55

Oh…I guess I’ll need to read more about Boot. Thanks @alandipert!