-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (43 loc) · 1.12 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
defmodule MetaHeexComponent.MixProject do
use Mix.Project
@version "0.2.2"
@source_url "https://github.com/e-fu/meta_heex_component.git"
def project do
[
app: :meta_heex_component,
version: @version,
elixir: "~> 1.14",
phoenix: "~> 1.7.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: "Dynamic meta tag management for Phoenix LiveView and Controller applications"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:phoenix_live_view, "~> 1.0.0"},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
# {:styler, "~> 1.2", only: [:dev, :test], runtime: false}
]
end
defp package do
[
maintainers: ["e.fu"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(lib LICENSE.md mix.exs README.md),
build_tools: ["mix"],
extra: %{
"type" => "library",
"documentation" => "https://hexdocs.pm/meta_heex_component"
}
]
end
end