# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'livereload', :apply_js_live => false, :apply_css_live => true do
  watch(%r{build/.+\.(css|js|html)$})
  watch(%r{demos/.+\.(css|js|html)$})
  watch(%r{libs/.+\.(css|js|html)$})
  watch(%r{src/.+\.(css|js|html)$})
  watch(%r{work/.+\.(css|js|html)$})
  watch(%r{tests/.+\.(css|js|html)$})
end
