summaryrefslogtreecommitdiffstats
path: root/watch.sh
blob: 0aceb1c155ffff5c3754a5b4661ca23773c4e4b3 (plain) (blame)
1
2
3
4
5
6
#!/bin/bash

while inotifywait -r -e close_write assets; do
  sassc assets/style.scss dist/style.css
  node_modules/.bin/postcss dist/style.css -r
done