aboutsummaryrefslogtreecommitdiff
path: root/Guardfile
diff options
context:
space:
mode:
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Guardfile b/Guardfile
index 97f4a2bf..9fe28584 100644
--- a/Guardfile
+++ b/Guardfile
@@ -1,9 +1,4 @@
-guard 'shell' do
- watch(/source\/sass\/(.*)\.s[ac]ss/) {|m| `compass compile` }
- watch(%r{public/.+\.(js|html)}) {|m| `compass compile` }
-end
-
guard 'livereload', :api_version => '1.6' do
- watch(%r{public/.+\.(css)})
- watch(%r{public/.+\.(js|html)})
+ watch(/public\/stylesheets\/(.*)\.css/);
+ watch(/public\/(.*)\.(js|html|png|jpg|gif|jpeg|ttf|otf|woff|svg)/i);
end