Skip to content

Instantly share code, notes, and snippets.

@endtwist
Forked from techyak/Compass Watch
Created October 4, 2011 23:10
Show Gist options
  • Save endtwist/1263118 to your computer and use it in GitHub Desktop.
Save endtwist/1263118 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
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