-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
98 lines (86 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
defmodule LiveMap.MixProject do
use Mix.Project
@source_url "https://github.com/sntran/live_map"
@version File.read!("VERSION") |> String.trim()
def project do
[
app: :live_map,
version: @version,
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
escript: escript(),
description: description(),
package: package(),
deps: deps(),
docs: docs(),
preferred_cli_env: [
"test.watch": :test
],
test_coverage: [
ignore_modules: [
LiveMap.CLI,
LiveMapTestApp,
LiveMapTestApp.Application,
LiveMapTestApp.Endpoint,
LiveMapTestApp.Router,
LiveMapTestApp.Router.Helpers,
],
],
]
end
defp description do
"""
LiveMap is a Phoenix LiveView component for interactive map with
dynamic data.
"""
end
defp package do
[
name: :live_map,
files: [
"lib",
"mix.exs",
"README.md",
"LICENSE.md",
"VERSION"
],
maintainers: ["Trần Nguyễn Sơn"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp escript do
[main_module: LiveMap.CLI]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix_live_view, "~> 0.17.5"},
{:jason, "~> 1.2"},
# Test/dev deps
{:plug_cowboy, "~> 2.0", only: :test},
{:floki, ">= 0.30.0", only: :test},
{:stream_data, "~> 0.5.0", only: :test},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
# Docs deps
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
]
end
defp docs do
[
main: "LiveMap",
source_url: @source_url,
extras: ["README.md"],
]
end
end