#
# Makefile
# edgardleal, 2018-08-21 09:29
#

all:
	npm run test
	npm run build

cleal:
	rm -r dist

publish:
	git checkout master
	git merge develop
	npm publish

# vim:ft=make
#
