Browse Source

Adde watch script for sass/coffeescript files

Taddeus Kroes 12 năm trước cách đây
mục cha
commit
1b801eefa9
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  1. 11 0
      watch.sh

+ 11 - 0
watch.sh

@@ -0,0 +1,11 @@
+#!/usr/bin/env sh
+
+hash inotifywait || (echo "Install inotify-tools first"; exit 1)
+
+make
+
+while true; do
+    inotifywait --quiet --event attrib,modify *.sass *.coffee
+    sleep 0.05s
+    make
+done