-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmix.exs
More file actions
116 lines (107 loc) · 2.92 KB
/
Copy pathmix.exs
File metadata and controls
116 lines (107 loc) · 2.92 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
defmodule Drops.MixProject do
use Mix.Project
@source_url "https://github.com/solnic/drops"
@version "0.2.1"
@license "LGPL-3.0-or-later"
def project do
[
app: :drops,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
licenses: [@license],
description: ~S"""
Tools for working with data effectively - data contracts using types, schemas, domain validation rules, type-safe casting, and more.
""",
links: %{"GitHub" => @source_url},
package: package(),
docs: docs(),
source_url: @source_url,
consolidate_protocols: Mix.env() == :prod,
elixir_paths: elixir_paths(Mix.env()),
preferred_cli_env: [
"drops.example": :dev,
"drops.examples": :dev,
drops: :dev
]
]
end
def elixir_paths(:test) do
["lib", "test/support"]
end
def elixir_paths(:dev) do
["lib", "test/support", "examples"]
end
def elixir_paths(_) do
["lib"]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Drops.Application, []},
extra_applications: [:logger],
registered: [Drops.Supervisor]
]
end
defp package() do
[
name: "drops",
files: ~w(lib/drops .formatter.exs mix.exs README* LICENSE CHANGELOG.md),
licenses: [@license],
links: %{"GitHub" => "https://github.com/solnic/drops"}
]
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
extra_section: "GUIDES",
source_url: @source_url,
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
extras: [
"README.md",
"CHANGELOG.md"
],
groups_for_modules: [
Validation: [
Drops.Contract,
Drops.Casters,
Drops.Predicates,
Drops.Validator.Messages.Backend
],
Types: [
Drops.Types,
Drops.Types.Primitive,
Drops.Types.List,
Drops.Types.Map,
Drops.Types.Map.Key,
Drops.Type.DSL,
Drops.Types.Union,
Drops.Types.Cast
],
"Type DSL": [
Drops.Type,
Drops.Type.DSL,
Drops.Type.Validator
]
]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:nimble_options, "~> 1.0"},
{:telemetry, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.21.0", only: :dev},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ecto, "~> 3.10", optional: true},
{:ecto_sql, "~> 3.10", optional: true},
{:ecto_sqlite3, "~> 0.12", only: [:test, :dev]},
{:phoenix_html, "~> 4.0", only: [:test], runtime: false, optional: true},
{:phoenix_ecto, "~> 4.0", only: [:test], runtime: false, optional: true}
]
end
end