This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
temple/mix.exs
Mitchell Hanberg c6d29e592b Bump v0.8.0
2021-08-29 18:11:24 -04:00

51 lines
1.2 KiB
Elixir

defmodule Temple.MixProject do
use Mix.Project
def project do
[
app: :temple,
name: "Temple",
description: "An HTML DSL for Elixir and Phoenix",
version: "0.8.0",
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/mhanberg/temple",
docs: [
main: "Temple",
extras: ["README.md"]
]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["Mitchell Hanberg"],
licenses: ["MIT"],
links: %{github: "https://github.com/mhanberg/temple"},
files: ~w(lib priv CHANGELOG.md LICENSE mix.exs README.md .formatter.exs)
]
end
defp deps do
[
{:ex_doc, "~> 0.24.0", only: :dev, runtime: false},
{:phoenix_view, "~> 1.0"},
{:phoenix_live_view, ">= 0.0.0", only: :test}
]
end
end