Skip to content

Commit

Permalink
Update make file
Browse files Browse the repository at this point in the history
  • Loading branch information
xthexder committed Oct 23, 2013
1 parent f3f5d86 commit 4f75b9f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
LESSC = node_modules/less/bin/lessc
UGLIFYJS = node_modules/uglify-js/bin/uglifyjs

compile-assets:
prepare: compile-assets

install:
npm install

compile-assets: install
${LESSC} -O3 --yui-compress assets/css/master.less > public/master.css
${UGLIFYJS} assets/js/*.js --comments -c -m -o public/master.js

Expand Down

0 comments on commit 4f75b9f

Please sign in to comment.