Skip to content

Commit

Permalink
Add a justfile for convenience
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Apr 8, 2024
1 parent 74bc8ad commit 33482cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
default:
just --list

format:
julia --project=@JuliaFormatter -e 'using JuliaFormatter; format(".")'

docs:
julia --project=docs docs/make.jl

servedocs:
julia --project=docs -e 'using LiveServer; serve(dir="docs/build")'

servedocs-continuously:
julia --project=docs -e 'using ProbNumDiffEq, LiveServer; servedocs()'

0 comments on commit 33482cb

Please sign in to comment.