.PHONY: test


clean:
	rm -rf ./node_modules/

install:
	npm install

verify:
	nbt verify --skip-layout-checks | grep -v Warning

unit-test:
	mocha

test: verify unit-test

deploy-patch:
	npm version patch
	npm publish
	git push && git push --tags

deploy-minor:
	npm version minor
	npm publish
	git push && git push --tags

deploy-major:
	npm version major
	npm publish
	git push && git push --tags


