blowater/UI/makefile
Sherry e149b37087
compile all UI tests in GitHub Action (#256)
Co-authored-by: BlowaterNostr <127284497+BlowaterNostr@users.noreply.github.com>
2023-10-24 11:24:27 +08:00

18 lines
377 B
Makefile

page=app
port=4507
test: bundle
file_server ./deploy
bundle:
deno bundle --config=./deno.json $(page).test.tsx deploy/main.mjs
app: bundle-app
file_server --port=$(port) ./deploy
bundle-app:
deno bundle --config=./deno.json _main.tsx deploy/main.mjs
compile-all-tests:
deno run --allow-read --allow-env --allow-write --allow-net _compile-ui-tests.ts