templates/Guardfile in kitabu-1.0.1 vs templates/Guardfile in kitabu-1.0.2
- old
+ new
@@ -1,8 +1,12 @@
notification :off
interactor :off
guard :shell do
- watch %r[^(?!output)] do |m|
+ watch %r[^(?!output|templates/scss)] do |m|
`kitabu export`
+ end
+
+ watch %r[^templates/scss] do |m|
+ `sass --unix-newlines templates/scss:templates`
end
end