Created
May 25, 2012 03:14
-
-
Save edwardhotchkiss/2785534 to your computer and use it in GitHub Desktop.
blog: Node.JS - Automation with a Makefile
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
$ cd my_project | |
$ touch Makefile |
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
$ [sudo] npm install uglify-js -g | |
$ [sudo] npm install less -g |
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
# CSS Directory | |
CSS_DIR = assets/css/ | |
# LESS Directory | |
LESS_DIR = assets/less/ | |
# JS Directory | |
JS_DIR = assets/js/ | |
# minify CSS with LESSC | |
css: | |
lessc ${LESS_DIR}index.less ${CSS_DIR}main.min.css -compress | |
# minify JavaScript with UgilifyJS | |
js: | |
uglifyjs -o ${JS_DIR}main.min.js ${JS_DIR}jekyll.js | |
# start jekyll | |
run: | |
jekyll --server | |
.PHONY: js css |
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
$ make css | |
$ make js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment