We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8339fc9 commit 43a7341Copy full SHA for 43a7341
Guardfile
@@ -85,14 +85,14 @@ group :build do
85
command("make public/imports")
86
end
87
88
- watch(/^src\/(.+)\.sass$/) do |match|
+ watch(/^src\/(.+)(\.sass)|(\.scss)$/) do |match|
89
path = match[1]
90
puts path
91
if path =~ /^sass\//
92
delete_css
93
command("make")
94
else
95
- command("bin/sass -I src --require ./src/helpers/sass/lab_fontface.rb src/#{path}.sass public/#{path}.css")
+ command("bin/sass -I src -I public --require ./src/helpers/sass/lab_fontface.rb src/#{path}.sass public/#{path}.css")
96
97
98
0 commit comments