summaryrefslogtreecommitdiff
path: root/client-web/makefile
blob: 9760c399e2f6f4447647f6a0a2345b7ae51719e9 (plain)
1
2
3
4
5
6
7
8
.PHONY: all watch
all: public/assets/bundle.js
watch:
	deno bundle --no-check --watch source/index.ts public/assets/bundle.js

public/assets/bundle.js: source/*
	deno bundle --no-check --unstable source/index.ts > $@