-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
mix.exs
69 lines (62 loc) · 1.56 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
defmodule Scribe.Mixfile do
use Mix.Project
@source_url "https://github.com/codedge-llc/scribe"
@version "0.11.0"
def project do
[
app: :scribe,
build_embedded: Mix.env() == :prod,
deps: deps(),
docs: docs(),
dialyzer: dialyzer(),
elixir: "~> 1.13",
name: "Scribe",
package: package(),
start_permanent: Mix.env() == :prod,
version: @version
]
end
def application do
[extra_applications: [:logger, :pane]]
end
defp deps do
[
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev},
{:faker, "~> 0.9", only: [:dev, :test]},
{:pane, "~> 0.2"}
]
end
defp dialyzer do
[
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"]
],
formatters: ["html"],
main: "Scribe",
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
source_ref: "v#{@version}",
source_url: @source_url
]
end
defp package do
[
description: "Pretty-print tables of structs and maps.",
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG*"],
licenses: ["MIT"],
links: %{
"Changelog" => "https://hexdocs.pm/scribe/changelog.html",
"GitHub" => "https://github.com/codedge-llc/scribe",
"Sponsor" => "https://github.com/sponsors/codedge-llc"
},
maintainers: ["Henry Popp"]
]
end
end