
.PHONY: all
all: setup build

.PHONY: setup
setup: 
	mkdir -p dist/
	npm install

.PHONY: build
build:
	npm run build

