Initial commit
[yaffs-website] / node_modules / performance-now / Makefile
1 build:
2         mkdir -p lib
3         rm -rf lib/*
4         node_modules/.bin/coffee --compile --output lib/ src/
5
6 watch:
7         node_modules/.bin/coffee --watch --compile --output lib/ src/
8         
9 test:
10         node_modules/.bin/mocha
11
12 jumpstart:
13         curl -u 'meryn' https://api.github.com/user/repos -d '{"name":"performance-now", "description":"Implements performance.now (based on process.hrtime).","private":false}'
14         mkdir -p src
15         touch src/performance-now.coffee
16         mkdir -p test
17         touch test/performance-now.coffee
18         npm install
19         git init
20         git remote add origin git@github.com:meryn/performance-now
21         git add .
22         git commit -m "jumpstart commit."
23         git push -u origin master
24
25 .PHONY: test