feat: migrate to cabal build and cabal run

This commit is contained in:
♥ Minnie ♥ 2025-02-23 17:28:43 +08:00
parent 58b110833a
commit b0bf75382b
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,3 +1,4 @@
# List available recipes
default:
@just --list
@ -10,6 +11,10 @@ docs:
repl *ARGS:
cabal repl {{ ARGS }}
# Run ghcid -- auto-recompile and run `main` function
run:
ghcid -T :main
# Run cabal build
build *ARGS:
cabal build {{ ARGS }}
# Run cabal run
run *ARGS:
cabal run {{ ARGS }}