diff options
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 |