summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/node_modules/performance-now/Makefile
blob: e57557e34677a34712578a2ed82449d2ee1c8b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
build:
	mkdir -p lib
	rm -rf lib/*
	node_modules/.bin/coffee --compile --output lib/ src/

watch:
	node_modules/.bin/coffee --watch --compile --output lib/ src/

test:
	node_modules/.bin/mocha

jumpstart:
	curl -u 'meryn' https://api.github.com/user/repos -d '{"name":"performance-now", "description":"Implements performance.now (based on process.hrtime).","private":false}'
	mkdir -p src
	touch src/performance-now.coffee
	mkdir -p test
	touch test/performance-now.coffee
	npm install
	git init
	git remote add origin git@github.com:meryn/performance-now
	git add .
	git commit -m "jumpstart commit."
	git push -u origin master

.PHONY: test