-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
81 lines (73 loc) · 1.89 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
defmodule Loupe.MixProject do
use Mix.Project
@github "https://github.com/nicklayb/loupe"
@version "0.9.0"
def project do
[
app: :loupe,
version: @version,
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
docs: [
main: "readme",
extras: ["README.md"]
],
name: "Loupe",
description: "User friendly customizable query syntax",
source_url: @github,
package: package()
]
end
defp package do
[
name: "loupe",
files: ~w(lib src mix.exs README* LICENSE* CONTRIBUTING*),
licenses: ["MIT"],
links: %{
"GitHub" => @github
},
maintainers: ["Nicolas Boisvert"]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(environment) when environment in ~w(dev test)a, do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:phoenix_live_view, "~> 0.18", optional: true},
{:ecto, "~> 3.11", optional: true},
{:ecto_sql, "~> 3.11", optional: true},
{:credo, "~> 1.6.7", only: [:dev, :test]},
{:excoveralls, "~> 0.16", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:postgrex, ">= 0.0.0", only: [:dev, :test]},
{:money, "~> 1.10", only: [:dev, :test]}
]
end
defp aliases do
[
test: [
"ecto.drop",
"ecto.create --quiet -r Loupe.Test.Ecto.Repo",
"ecto.migrate",
"run test/support/repo/seeds.exs",
"test"
]
]
end
end