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

55 lines
1.3 KiB
Elixir
Raw Normal View History

2019-07-02 02:48:51 +00:00
defmodule Temple.MixProject do
2019-04-15 01:44:39 +00:00
use Mix.Project
def project do
[
2019-07-02 02:48:51 +00:00
app: :temple,
name: "Temple",
2019-07-03 23:52:40 +00:00
description: "An HTML DSL for Elixir and Phoenix",
2020-07-16 04:21:25 +00:00
version: "0.6.0-alpha.4",
2019-07-04 00:36:04 +00:00
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
2019-06-29 22:24:17 +00:00
elixir: "~> 1.7",
2019-04-15 01:44:39 +00:00
start_permanent: Mix.env() == :prod,
2019-05-09 02:06:44 +00:00
deps: deps(),
2019-07-02 02:48:51 +00:00
source_url: "https://github.com/mhanberg/temple",
2019-05-09 02:06:44 +00:00
docs: [
2019-07-02 02:48:51 +00:00
main: "Temple",
2019-05-10 19:06:03 +00:00
extras: ["README.md"],
deps: [
phoenix_html: "https://hexdocs.pm/phoenix_html/"
]
]
2019-04-15 01:44:39 +00:00
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
2019-04-15 01:44:39 +00:00
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
2019-07-02 02:48:51 +00:00
2019-07-04 00:36:04 +00:00
defp package do
[
maintainers: ["Mitchell Hanberg"],
licenses: ["MIT"],
links: %{github: "https://github.com/mhanberg/temple"},
exclude_patterns: ["temple.update_mdn_docs.ex"],
2019-07-04 00:36:04 +00:00
files: ~w(lib priv CHANGELOG.md LICENSE mix.exs README.md .formatter.exs)
]
end
2019-04-15 01:44:39 +00:00
defp deps do
[
{:ex_doc, "~> 0.22.0", only: :dev, runtime: false},
{:phoenix, ">= 0.0.0", optional: true},
{:phoenix_html, ">= 0.0.0", only: :test}
2019-04-15 01:44:39 +00:00
]
end
end