Files
t/justfile

14 lines
314 B
Makefile
Raw Normal View History

2024-12-21 07:26:27 -08:00
default: build
2024-12-21 07:46:47 -08:00
compile flags='':
tsc {{flags}}
2024-12-21 07:26:27 -08:00
2024-12-21 07:46:47 -08:00
bundle flags='':
esbuild js/main.js --bundle --format=esm --platform=browser --target=esnext --sourcemap=inline --outfile=static/app.mjs {{flags}}
2024-12-21 07:26:27 -08:00
2024-12-21 07:46:47 -08:00
build:
just compile
just bundle
watch:
concurrently "just compile --watch" "just bundle --watch"