I usually white pages in Jade, Stylus and CoffeeScript, so I use a shell script to watch them all and compile. And use a shell script with pkill -f to kill them after coding.
But there's problems:
- if I call this script from another directory, it fails
- if I forget to run the second script, it will just run,
http://gitcafe.com/jiyinyiyong/weibo-list/blob/master/watch/watch.sh#code
jade -O ../page/ --pretty -w ../src/index.jade &
jade -O ../page/ --pretty -w ../src/login.jade &
coffee -o ../page/ -wbc ../src/handle.coffee &
coffee -o ../page/ -wbc ../src/config.coffee &
stylus -o ../page/ -w ../src/page.styl &
doodle ../page/ ../server.coffee &
node-dev ../server.coffee &
Is there a better solution to manage these files?
Cakefileto automate these... My Cakefile. It's the same one I use in all my projects. – Gautham Badhrinathan Aug 29 '12 at 10:58-woption tostyluscommand? – jiyinyiyong Aug 29 '12 at 11:48Ctrl + C. That'll kill the cake process as well as all its child processes. If this really did help you, I'll post it as an answer. – Gautham Badhrinathan Aug 29 '12 at 14:03cakefile works on my laptop. – jiyinyiyong Aug 30 '12 at 1:22