blob: 003ee5e28baa100c43d62bd4e730b28f861c91e7 (
plain)
1
2
3
4
5
6
7
8
9
|
ESFLAGS = --target=esnext --sourcemap --format=esm
all: frontend/bundle.js
watch:
esbuild frontend/main.ts --bundle --outfile=frontend/bundle.js $(ESFLAGS) --watch
frontend/bundle.js: $(shell find frontend -name '*.ts')
esbuild frontend/main.ts --bundle --outfile=frontend/bundle.js $(ESFLAGS)
|