diff --git a/Justfile b/Justfile index 6ef3ad1..675b9de 100644 --- a/Justfile +++ b/Justfile @@ -2,10 +2,16 @@ run: ./gradlew run test: - ./gradlew test + ./gradlew test --rerun-tasks + +doc: + ./gradlew javadoc --rerun-tasks clean: fd -td -I build -x rm -r watch: - watchexec -c -w app/src "just test && just run" \ No newline at end of file + watchexec -c -w app/src "just test && just run" + +watchdoc: + watchexec -c -w app/src "just doc"