diff --git a/.justfile b/.justfile index 04e1760..0a341b2 100644 --- a/.justfile +++ b/.justfile @@ -6,6 +6,11 @@ run-test TEST_NAME: run-file FILE_NAME: cargo run -- "{{FILE_NAME}}" +# Build Lune for release +# TODO: Take input argument for build type, rather than defaulting to `release` +build src/main.rs: + cargo build --release + # Run tests for the Lune library test: cargo test --lib -- --test-threads 1