
.PHONY: all
all: setup build

.PHONY: setup
setup: 
	mkdir -p dist/

.PHONY: build
build:
	npm install
	npm run build

