-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
57 lines (51 loc) · 1.2 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
49
50
51
52
53
54
55
56
57
defmodule Doumi.Phoenix.SVG.MixProject do
use Mix.Project
@source_url "https://github.com/nallwhy/doumi_phoenix_svg"
@version "0.3.0"
def project do
[
app: :doumi_phoenix_svg,
version: @version,
elixir: "~> 1.12",
deps: deps(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix_live_view, "~> 0.16", optional: true},
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end
defp package do
[
description: "A helper library that generates Phoenix function components from SVG files.",
licenses: ["MIT"],
maintainers: ["Jinkyou Son(nallwhy@gmail.com)"],
files: ~w(lib mix.exs README.md LICENSE.md),
links: %{
"GitHub" => @source_url
}
]
end
defp docs do
[
extras: [
"README.md": [title: "Overview"],
"LICENSE.md": [title: "License"]
],
source_url: @source_url,
main: "readme",
api_reference: false,
formatters: ["html"]
]
end
end