Hi, It seems I’m not entirely getting the new files filter, maybe add some examples to the documentation?
For a long time I had to have this block in my config:
[[module.mounts]]
excludeFiles = '/**.DS_Store'
source = 'assets'
target = 'assets'
The reason was because one of my shortcodes gatheres images from assets (working on a mac, you inadvertently create these hidden files everywhere you go) and maybe the image process function was choking on them, I don’t know anymore exactly…
So, now I’m getting that deprecation info and want to clear that up. How would I go about converting this block to use files?
Maybe something like this:
[[module.mounts]]
files = [ '! *.DS_Store', '**' ]
source = 'assets'
target = 'assets'