-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
49 lines (43 loc) · 1004 Bytes
/
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
defmodule PhoenixTypedHook.MixProject do
use Mix.Project
def project do
[
app: :phoenix_typed_hook,
version: "0.18.2",
elixir: "~> 1.0",
build_embedded: false,
start_permanent: false,
description: description(),
package: package(),
deps: deps(),
docs: docs(),
name: "Phoenix Typed Hook",
source_url: "https://github.com/guisehn/phoenix_typed_hook"
]
end
def application do
[]
end
defp deps do
[
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"]
]
end
defp description do
"Write your Phoenix LiveView client hooks using typed classes, with or without TypeScript"
end
defp package do
[
name: "phoenix_typed_hook",
files: ~w(priv mix.exs package.json README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/guisehn/phoenix_typed_hook"}
]
end
end