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 def ignore_list
[ [
/\.sass-cache\//, /^\.sass-cache\//,
/\.git/, /^\.git\//,
/\.DS_Store$/, /^\.gitignore$/,
/build\//, /^\.DS_Store$/,
/\.rbenv-version$/, /^build\//,
/Gemfile$/, /^\.rbenv-version$/,
/Gemfile\.lock$/, /^Gemfile$/,
/\.mm-pid/ /^Gemfile\.lock$/,
/^\.mm-pid/
] ]
end end
end end