Last active
March 1, 2016 21:48
-
-
Save devinmcinnis/d2dcc44abefd124140bc to your computer and use it in GitHub Desktop.
Makefile instead of gulp/grunt/foreman
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
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