Fork me on GitHub
#figwheel-main
<
2018-12-11
>
witek10:12:22

I have a project mylib containing a namespace annotaded with ^:figwheel-hooks and a function foo annotated with ^:before-load. A second project myapp uses mylib. But when running myapp in figwheel the foo function from mylib is not called when I make changes to sources in myapp. Only if I add the source directory of mylib into :watch-dirs of myapp, the function foo is called when changing sources in myapp. Is this a bug or am I missing something?

witek11:12:41

It seams, figwheel calls functions annotated with ^:before-load only if these functions itself are in :watch-dirs... 😞