Archived
3
0

Add continuous development pipeline

This commit is contained in:
2025-03-09 20:46:53 +01:00
parent 77c8deabc8
commit 8df50fe720
3 changed files with 46 additions and 6 deletions

View File

@@ -27,6 +27,10 @@ client/dst/%.js: client/src/%.ts client/node_modules client/dst
client/dst/%.css: client/src/%.scss client/node_modules client/dst
cat $< | bun run --cwd client sass --stdin --style compressed > $@
.PHONY: client_test
client_test: client/node_modules
bun test --pwd client
.PHONY: client_clean
client_clean:
rm -rf client/dst