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 --access public publishPatch:build npm version patch npm publish --access public git push clean: rm -rf dist