Add back some deprecated methods (#116)
This commit is contained in:
parent
a41187be1c
commit
761dfe534d
|
@ -42,6 +42,7 @@ abstract type Plugin end
|
|||
include("template.jl")
|
||||
include("plugin.jl")
|
||||
include("show.jl")
|
||||
include("deprecated.jl")
|
||||
|
||||
# Run some function with a project activated at the given path.
|
||||
function with_project(f::Function, path::AbstractString)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
@deprecate generate(t::Template, pkg::AbstractString) t(pkg)
|
||||
@deprecate generate(pkg::AbstractString, t::Template) t(pkg)
|
||||
@deprecate interactive_template() Template(; interactive=true)
|
||||
@deprecate generate_interactive(pkg::AbstractString) Template(; interactive=true)(pkg)
|
||||
@deprecate GitHubPages(; kwargs...) Documenter{TravisCI}(; kwargs...)
|
Loading…
Reference in New Issue