Add justfile

This commit is contained in:
2026-07-05 19:00:38 +01:00
parent 03d1d728f6
commit 867b00279a
+16
View File
@@ -0,0 +1,16 @@
# Prism — Build tasks
# See https://just.systems
default: build
# Build the project
build:
@echo "TODO: implement build"
# Run linter / typecheck
lint:
@echo "TODO: implement linter"
# Run tests
test:
@echo "TODO: implement tests"