This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-22
Channels
- # aws (1)
- # beginners (102)
- # boot (5)
- # cljs-dev (59)
- # cljsjs (1)
- # clojure (154)
- # clojure-australia (1)
- # clojure-brasil (1)
- # clojure-dusseldorf (4)
- # clojure-greece (36)
- # clojure-italy (10)
- # clojure-poland (5)
- # clojure-romania (1)
- # clojure-russia (7)
- # clojure-spec (32)
- # clojure-uk (113)
- # clojure-ukraine (3)
- # clojurescript (107)
- # cursive (13)
- # data-science (25)
- # datomic (23)
- # emacs (3)
- # events (1)
- # fulcro (72)
- # funcool (10)
- # graphql (1)
- # leiningen (1)
- # luminus (2)
- # lumo (38)
- # off-topic (14)
- # onyx (78)
- # planck (4)
- # re-frame (55)
- # reagent (1)
- # ring (3)
- # ring-swagger (2)
- # rum (19)
- # shadow-cljs (89)
- # spacemacs (101)
- # sql (2)
- # unrepl (88)
Is there any way to do private or hidden boot tasks which are not visible in the help?
@jikuja I think ^:private
meta works for that
Hey guys, migrating my lein project to boot. I have an issue with running my Figwheel component in a boot repl. Getting a long stream of errors java[14330] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-21)
. It works though, but greatly annoying. I found a mention of this earlier in the slack channel but no solutions. It seems to be an old libuv
problem on OSX.
The problem is the figwheel system component generates a bunch of tempfiles that need to be available by :resource-paths
, and boot watches it (don’t know why though, new to boot). I get that this is not complient with the boot fileset mentality 🙂. Anyway, does anyone know how to maybe prevent the repl task to watch those compiled javascript files? Or maybe have a repl that does not watch the local dev filesystem, since I also use ring.reload etc..
I’m on OSX 10.13.1, boot v2.7.2
Easy steps to reproduce from https://github.com/boot-clj/boot/issues/641
cd resources
seq 600 | xargs mkdir
cd ..
boot
https://github.com/seancorfield/boot-localrepo -- a Boot wrapper for lein-localrepo
fixed for now by rm -rf ~/.boot/cache
, hope it doesn’t creep up again