This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-10-27
Channels
- # aleph (2)
- # beginners (19)
- # boot (15)
- # cider (1)
- # cljsrn (1)
- # clojure (68)
- # clojure-austin (12)
- # clojure-dev (2)
- # clojure-france (6)
- # clojure-italy (46)
- # clojure-russia (45)
- # clojure-spec (55)
- # clojure-uk (41)
- # clojurescript (117)
- # component (15)
- # cursive (54)
- # datomic (24)
- # events (2)
- # funcool (1)
- # instaparse (4)
- # klipse (30)
- # lein-figwheel (3)
- # leiningen (4)
- # luminus (4)
- # om (10)
- # onyx (13)
- # parinfer (36)
- # proton (1)
- # reagent (1)
- # ring (2)
- # ring-swagger (1)
- # rum (19)
- # test-check (6)
- # testing (9)
- # untangled (1)
I'm having trouble with serving my image assets. They are not showing in sources on Chrome devtools. I am currently using the Tenzing template with Rum and Garden. It appears there is a Get request being made to css as the root directory and I don't know how to change this as it is not specified in the build.boot file.
@grounded_sage is the repo public somewhere?
Is it possible to have something that runs once after watch has happened once? It's a bit confusing to start my system before new assets have been created (especially given the 100s initial build time)
Currently taking advantage of my idempotent components, and start the system again after each file change. Concerned this might not be very efficient, and have unintended side-effects as the system grows.
@dominicm you could have a task that tracks the number of times it's been ran and only run it on the second invocation
@hiredman why does show not work?
@martinklepsch Yeah, that's going to be my fallback. I was kinda hoping there would be some trick to the pre/post fileset stuff, but I don't think there is.
feels like a clean solution to me 🙂
@martinklepsch this build has tasks that add dependencies, so to show everything it all needs to be composed together
@mikebelanger, just fyi, I figured out my problem. I was using (cljs :ids #{“app"})
. When I moved app.cljs.edn
to src/cljs/js/app.cljs.edn
, I also needed to update to use (cljs :ids #{“js/app"})
, thanks again for the second pair of eyes
that link you mentioned really helped 👍
@micha @alandipert Finished listening to the Cognicast. Well done, it was a nice conversation. But now I can't take a certain image of teeth out of my head. 🙂
So, boot parses a —
from the command line as adding an additional task to the pipeline; is there any concept of running more than one pipeline?