This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-27
Channels
- # adventofcode (1)
- # announcements (4)
- # beginners (120)
- # calva (5)
- # cider (12)
- # clara (3)
- # cljdoc (48)
- # cljs-dev (33)
- # cljsrn (4)
- # clojure (124)
- # clojure-dev (43)
- # clojure-europe (2)
- # clojure-italy (168)
- # clojure-nl (2)
- # clojure-spec (7)
- # clojure-uk (79)
- # clojurescript (50)
- # core-logic (6)
- # cursive (12)
- # datascript (1)
- # datomic (8)
- # devcards (2)
- # emacs (5)
- # events (2)
- # figwheel-main (6)
- # fulcro (18)
- # graphql (42)
- # hyperfiddle (3)
- # jobs (1)
- # luminus (2)
- # nrepl (5)
- # off-topic (59)
- # onyx (5)
- # parinfer (2)
- # pathom (10)
- # pedestal (2)
- # portkey (3)
- # re-frame (24)
- # reagent (6)
- # reitit (54)
- # remote-jobs (1)
- # ring (5)
- # shadow-cljs (75)
- # spacemacs (35)
- # sql (22)
- # tools-deps (16)
- # unrepl (10)
Is there a tool/API for loading figwheel-main configuration from lein's project.clj map? I'd like to see if I can keep all build configuration in one place (project.clj). Or is the idea to create aliases which pass arguments to lein run -m figwheel.main ARG...
?
I've been reading through the most excellent documentation on http://figwheel.org, and some past blog/wiki posts. Excuse me if I missed something.
I had a build set up with #lein-figwheel and want to use figwheel-main going forward.
No that’s not possible unless you make a custom script and read the project clj yourself
Got it. Thanks! I'll explore further. The lein alias route could be what I need, and I'll take another look at figwheel-main.edn. I find lein
productive but will keep Clojure CLI tooling in mind as an alternative.
hi folks, esp @bhauman! I have probably weird question — I'm writing tool that targets js development (funny, right) and decided to go with figwheel for hot reloading and other extras. I have the problem that I need to pre-process the js source before it gets to the closurescript compiler and I can't find good spot to plug in. the best spot so-far is the pre-build-hooks where I can get my job done, but I'd prefer if I got the list of the changed files so I preprocess only them. reading the source it seems
wrap-with-build-hooks
could easily pass that info to the hook. Any reason not to do that?