Skip to content

Instantly share code, notes, and snippets.

@devinmcinnis
Last active March 1, 2016 21:48
Show Gist options
  • Save devinmcinnis/d2dcc44abefd124140bc to your computer and use it in GitHub Desktop.
Save devinmcinnis/d2dcc44abefd124140bc to your computer and use it in GitHub Desktop.
Makefile instead of gulp/grunt/foreman
jade = jade -w views/*.jade -o ./ -P # Convert Jade files to HTML
npm = npm prune; npm install
server = ./bin/www
stylus = mkdir public/css; stylus -w -m styles/style.styl -o public/css -u nib -c
start:
$(npm); $(jade) &$(stylus) &$(server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment