Fork me on GitHub
#boot
<
2017-11-22
>
jikuja06:11:08

Is there any way to do private or hidden boot tasks which are not visible in the help?

richiardiandrea17:11:39

@jikuja I think ^:private meta works for that

yannvahalewyn20:11:39

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

yannvahalewyn21:11:47

fixed for now by rm -rf ~/.boot/cache, hope it doesn’t creep up again