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
|
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
|
||||||
|
|
Loading…
Reference in a new issue