boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
bostonaholic 2018-12-16T01:12:12.027100Z

thanks @flyboarder. I know I had solved this before. This is an older project I picked back up. I forgot that boot 2.5 introduced the target task. So I needed to add (target)

(deftask build []
  (comp (cljs :optimizations :advanced)
        (target)))

👍 2