You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2018. It is now read-only.
.PHONY : init clean-docs clean build test dist publish
init:
npm install
clean:
rm -rf lib/ && rm -rf static/evedump.db
build: deps clean
coffee -j index.js -o lib/ -c src/
test: build
mocha -t 4000 --compilers coffee:coffee-script --require should
deps:
@test `which coffee` || echo 'You need to have CoffeeScript in your PATH.\nPlease install it using `brew install coffee-script` or `npm install coffee-script`.'
@test `which mocha` || echo 'You need to have mocha installed to run tests!'