Current section

Files

Jump to
gen_dom mix.exs
Raw

mix.exs

defmodule GenDOM.MixProject do
use Mix.Project
@version "0.0.1"
@source_url "https://github.com/liveview-native/gen_dom"
def project do
[
app: :gen_dom,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description, do: "GenDOM"
defp package do
%{
maintainers: ["Brian Cardarella"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Built by DockYard, Expert Elixir & Phoenix Consultants" => "https://dockyard.com/phoenix-consulting"
}
}
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:live_view_native, "~> 0.4.0-rc.1"},
{:ex_doc, "~> 0.38"}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end