Be very careful about filewatcher ignore regexes

This commit is contained in:
Ben Hollis 2012-04-29 09:37:14 -07:00
parent 81e3d894c2
commit 23e0586896

View file

@ -16,14 +16,15 @@ module Middleman
def ignore_list
[
/\.sass-cache\//,
/\.git/,
/\.DS_Store$/,
/build\//,
/\.rbenv-version$/,
/Gemfile$/,
/Gemfile\.lock$/,
/\.mm-pid/
/^\.sass-cache\//,
/^\.git\//,
/^\.gitignore$/,
/^\.DS_Store$/,
/^build\//,
/^\.rbenv-version$/,
/^Gemfile$/,
/^Gemfile\.lock$/,
/^\.mm-pid/
]
end
end