diff --git a/justfile b/justfile new file mode 100644 index 0000000..bda2788 --- /dev/null +++ b/justfile @@ -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"