(simple) dependency tracking support
#168
Closed
opened 7 years ago by lobisquit
·
4 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Hi!
I am currently writing my CV with Pollen and code in
pollen.rkt
file has got really messy.So I decided to split it into some Racket files to require from the main
pollen.rkt
source. Everything renders properly, but modifications in dependencies are not tracked, as specified in the documentation.I agree with the design decision, but is there some way to tweak Pollen to track a fixed list of
rkt
files (other than the main one)?Nevermind, found this discussion: basically changing another
rkt
in watch-list would just recompile everything anyway (inlcuded untouchedpollen.rkt
), so it is equivalent to keep no cache at all.I’m persuaded that it could be more useful than deactivating the cache altogether. It has been added as the new setup value
compile-cache-watchlist
.Actually let's call it
cache-watchlist
instead, since it affects both the render cache and compile cache.Thanks for the support 👍