PATH := ./node_modules/.bin:${PATH}

.PHONY : init clean-docs clean build test dist publish

init:
	npm install

build:
	cake build
	npm install

clean:
	cake clean

test:
	cake build
	npm install
	mocha

commit:
	cake clean
	git add .
	git commit

publish:
	cake build
	npm publish
