This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-09-30
Channels
- # aleph (1)
- # announcements (7)
- # aws (4)
- # beginners (52)
- # calva (11)
- # cider (20)
- # clj-kondo (36)
- # clojure (53)
- # clojure-austin (1)
- # clojure-brasil (1)
- # clojure-conj (1)
- # clojure-europe (27)
- # clojure-italy (17)
- # clojure-nl (11)
- # clojure-norway (2)
- # clojure-spec (41)
- # clojure-uk (39)
- # clojuredesign-podcast (2)
- # clojurescript (22)
- # clojutre (14)
- # community-development (24)
- # cursive (6)
- # data-science (1)
- # datomic (38)
- # duct (3)
- # figwheel-main (8)
- # fulcro (34)
- # funcool (8)
- # jackdaw (3)
- # jobs (2)
- # off-topic (84)
- # pathom (3)
- # re-frame (4)
- # shadow-cljs (8)
- # tools-deps (5)
- # vim (7)
Hey guys, checking here before I go off on a deep dive, has anyone been able to create https://nodered.org/ modules with shadow-cljs?
Hello all. I'm trying to modify a shadow-cljs pipeline to reload the browser when some sass is compiled into css. I'm attempting to use the watch-dir feature but so far it hasn't worked. If I manually reload the browser, I see the change, but the watch-dir command doesn't seem to pick it up. Am I missing anything?
:main {:target :browser
:asset-path "/js/main"
:modules {:main {:entries [demo.client]}}
:devtools {:watch-dir "resources/public/styles"
:after-load demo.client/restart
:preloads [fulcro.inspect.preload demo.development-preload]}}
@ssanders you likely want :watch-dir "resources/public"
as the path your css uses is likely /styles/foo.css