aboutsummaryrefslogtreecommitdiff
path: root/example/Makefile
blob: 1a6e445946edefd258de9992b3c7090963a3c5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: dev

.DEFAULT_GOAL:= dist

dist:
	rm -rf dist
	gleam build
	npx vite build

dev:
	npx concurrently \
		vite \
		'watchexec --filter "src/*" gleam build'