How do I exclude swp files from the build process in Middleman?
Adding ignore '*.swp'
to the config.rb
doesn't work for me.
How do I exclude swp files from the build process in Middleman?
Adding ignore '*.swp'
to the config.rb
doesn't work for me.
Copyright © 2021 Jogjafile Inc.
Looks like I just needed to use regex
ignore /.*\.swp/
worked which looks for anything containing a.swp
at the end.