PkgTemplates.jl/docs/make.jl

24 lines
512 B
Julia
Raw Normal View History

2017-08-10 17:13:01 +00:00
using Documenter, PkgTemplates
makedocs(
modules=[PkgTemplates],
format=:html,
pages=[
"Home" => "index.md",
],
repo="https://github.com/christopher-dG/PkgTemplates.jl/blob/{commit}{path}#L{line}",
sitename="PkgTemplates.jl",
authors="Invenia Technical Computing Corporation",
2017-08-11 22:18:09 +00:00
assets=[
"assets/invenia.css",
],
2017-08-10 17:13:01 +00:00
)
deploydocs(
repo="github.com/christopher-dG/PkgTemplates.jl.git",
target="build",
julia="0.6",
deps=nothing,
make=nothing,
)