export PATH := $(shell pwd)/node_modules/.bin:$(PATH)
SHELL := /bin/bash

.PHONY: watch build genDoc

build:clean
	tsc

watch:clean
	tsc -w

genDoc:
	node ./tool/genDoc.js

publish:build
	npm publish

publishPatch:build
	npm version patch
	npm publish
	git push

clean:
	rm -rf dist
