start:
	npm start

build:
	rm -rf dist
	npm run build

test:
	npm test

flow:
	npx flow check

lint:
	npx eslint .

stats:
	npx webpack --profile --json > stats.json

storybook:
	npm run storybook

publish:
	rm -rf dist
	npm publish

doc-build:
	npx documentation build src/** -f html -o docs --config documentation.yml
	npx documentation build src/** -f md -o docs/omni-ui.md --config documentation.yml
	

.PHONY: test