# https://pnpm.io/ is better at storing packages than npm, if you still want to use npm just run "make NPM=npm " NPM = pnpm # # Build Frontend # .PHONY: all all: setup build .PHONY: setup setup: $(NPM) install .PHONY: build build: mkdir -p out/ $(NPM) run build .PHONY: clean clean: rm -rf out/