This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-07-20
Channels
- # announcements (7)
- # babashka (16)
- # beginners (58)
- # boot (12)
- # calva (3)
- # cider (11)
- # clj-kondo (9)
- # cljs-dev (8)
- # clojure (82)
- # clojure-europe (9)
- # clojure-italy (11)
- # clojure-losangeles (1)
- # clojure-nl (8)
- # clojure-uk (8)
- # clojurescript (5)
- # css (2)
- # cursive (5)
- # datomic (20)
- # docker (2)
- # emacs (4)
- # figwheel-main (16)
- # fulcro (53)
- # graalvm (17)
- # jackdaw (2)
- # jobs (4)
- # kaocha (6)
- # lambdaisland (2)
- # luminus (2)
- # meander (1)
- # off-topic (146)
- # re-frame (4)
- # releases (1)
- # rum (12)
- # sci (71)
- # shadow-cljs (26)
- # test-check (22)
- # vim (1)
- # xtdb (9)
Is it possible to add something to the classpath in boot, but not making it part of a fileset, just let it sit on the filesystem?
I'm trying to do a build with figwheel.main + deps.edn and combine this with our boot backend.
Making the output of figwheel main write into target or resources, makes boot very slow
https://github.com/boot-clj/boot/blob/master/doc/boot.pod.md#add-classpath @borkdude does that do what you want?
@micha It might. The first thing I tried was letting the CLJS compiler write to target-js
and in build.boot I added target-js
to :resource-paths
. What's the difference with add-classpath
?
i guess there are a ton of files being written to target-js
when you point the cljs compiler at it?