make.jl (1056B)
1 #!/usr/bin/env julia 2 3 4 push!(LOAD_PATH, "../src/") 5 # Pkg.develop("../") to make sure its the correct version of package installed 6 # julia --project -e 'using Pkg; Pkg.instantiate(); include("make.jl")' 7 8 # -------------------------------------------------------------------------------------------------- 9 # -- 10 using BazerUtils 11 using Documenter 12 13 # -- 14 DocMeta.setdocmeta!(BazerUtils, :DocTestSetup, :(using BazerUtils); 15 recursive=true) 16 17 # -- 18 makedocs( 19 format = Documenter.HTML(), 20 sitename = "BazerUtils.jl", 21 modules = [BazerUtils], 22 authors = "Erik Loualiche", 23 repo = Remotes.GitHub("LouLouLibs", "BazerUtils.jl"), 24 pages=[ 25 "Home" => "index.md", 26 "Manual" => [ 27 "man/logger_guide.md", 28 "man/read_html_tables.md", 29 "man/read_jsonl.md", 30 ], 31 "Library" => [ 32 "lib/public.md", 33 "lib/internals.md" 34 ] 35 ], 36 ) 37 38 39 deploydocs(; 40 repo="github.com/LouLouLibs/BazerUtils.jl", 41 target = "build", 42 branch = "gh-pages", 43 devbranch = "main", 44 )