-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmix.exs
More file actions
71 lines (64 loc) · 1.63 KB
/
mix.exs
File metadata and controls
71 lines (64 loc) · 1.63 KB
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
defmodule Delta.MixProject do
use Mix.Project
@app :delta
@name "Delta"
@version "0.4.2"
@github "https://github.com/slab/delta-elixir"
def project do
[
name: @name,
app: @app,
version: @version,
elixir: "~> 1.18",
description: description(),
package: package(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
docs: [
main: @name,
source_url: @github,
homepage_url: @github,
canonical: "https://hexdocs.pm/#{@app}",
extras: ["README.md", "CHANGELOG.md"]
],
dialyzer: [
plt_file: {:no_warn, "priv/plts/project.plt"},
plt_add_apps: [:ex_unit],
list_unused_filters: true
]
]
end
defp description do
"Simple, yet expressive format to describe contents and changes"
end
def application do
[
env: [custom_embeds: []],
extra_applications: [:logger]
]
end
defp deps do
[
{:diff_match_patch, "~> 0.3"},
{:dialyxir, "~> 1.4.5", only: [:dev, :test], runtime: false},
{:diffy, "~> 1.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp elixirc_paths(:dev), do: elixirc_paths(:test)
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp package do
[
name: @app,
maintainers: ["Slab"],
licenses: ["BSD-3-Clause"],
files: ~w(mix.exs lib README.md CHANGELOG.md),
links: %{
"Github" => @github,
"Delta.js" => "https://github.com/slab/delta",
"Changelog" => "https://hexdocs.pm/delta/changelog.html"
}
]
end
end