class Middleman::Sources

def exists?(type, path)

def exists?(type, path)
  watchers
    .lazy
    .select { |d| d.type == type }
    .any? { |d| d.exists?(path) }
end