Created
March 16, 2011 04:37
-
-
Save techyak/872022 to your computer and use it in GitHub Desktop.
the alias that I'm using to watch node.js/coffeescript/compass at the same time
This file contains 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
function nodewatch() { | |
find . | grep coffee$ | xargs coffee -cwl & | |
if [ $1 ] | |
then | |
nodemon $1.js & | |
else | |
nodemon app.js & | |
fi | |
compass watch public/ & | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment