Packages

Content Management System for static sites, like Jekyll but with elixir/eex rather than liquid templates

Current section

Files

Jump to
dragon lib mix tasks build.ex
Raw

lib/mix/tasks/build.ex

defmodule Mix.Tasks.Dragon.Build do
@moduledoc false
@shortdoc "Build from templates"
use Mix.Task
@impl true
def run([target]), do: Dragon.Cli.Build.build(target)
def run(_), do: IO.puts("Syntax: mix build {target}")
end