Created
April 16, 2011 21:28
-
-
Save akidee/923518 to your computer and use it in GitHub Desktop.
CoffeeScript watcher - should be placed in / of your module, will make coffee observe /src recusively and compile into /lib
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
dir=$(dirname $(readlink -f $0)) | |
rm -rf ${dir}/lib | |
coffee -b -wco ${dir}/lib ${dir}/src & | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment