install: install-deps install-flow-typed

install-deps:
	yarn

install-flow-typed:
	yarn run flow-typed install

build:
	rm -rf dist
	yarn run build

test:
	yarn test

check-types:
	yarn run flow

lint:
	yarn run eslint -- src test

publish:
	npm publish

.PHONY: test
