HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/firetech.komma.pro/node_modules/performance-now/Makefile
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