Be very careful about filewatcher ignore regexes
This commit is contained in:
parent
81e3d894c2
commit
23e0586896
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue