Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
build process
Browse files Browse the repository at this point in the history
  • Loading branch information
craigspaeth committed Jan 16, 2014
1 parent 632d3fa commit 816aecf
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 7,802 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -11,4 +11,7 @@ pids
logs
results
npm-debug.log
node_modules
node_modules
out/index.html
out/index.js
out/index.css
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -3,7 +3,13 @@ BIN = node_modules/.bin
s:
$(BIN)/coffee scripts/server.coffee

deploy:
compile:
$(BIN)/jade src/templates/index.jade -o out
$(BIN)/stylus src/stylesheets/index.styl -o out/ --inline --include out/
$(BIN)/sqwish out/index.css
mv out/index.min.css out/index.css
$(BIN)/browserify src/scripts/index.coffee -t coffeeify | $(BIN)/uglifyjs > out/index.js

deploy:
$(BIN)/coffee scripts/to-s3.coffee
open http://2013.artsy.net/

0 comments on commit 816aecf

Please sign in to comment.