.PHONY: install dev build build-storybook clean publish lint lint-fix



install:
	npm install

dev:
	npm run dev

build:
	npm run build

build-storybook:
	npm run build-storybook

lint:
	npm run lint

lint-fix:
	npm run lint:fix

clean:
	rm -rf dist storybook-static

publish: clean build
	npm publish --access public
