-
Notifications
You must be signed in to change notification settings - Fork 31
/
mix.exs
171 lines (162 loc) · 5.33 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
defmodule AshAuthentication.Phoenix.MixProject do
@moduledoc false
use Mix.Project
@version "2.2.0"
def project do
[
app: :ash_authentication_phoenix,
version: @version,
description: "Phoenix integration for Ash Authentication",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
preferred_cli_env: [ci: :test],
aliases: aliases(),
deps: deps(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
plt_add_apps: [:mix, :ex_unit, :ash_authentication],
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
],
docs: [
main: "readme",
extras: [
"README.md",
{"documentation/tutorials/get-started.md", title: "Get Started"},
{"documentation/tutorials/liveview.md", title: "LiveView Routes"},
{"documentation/tutorials/ui-overrides.md", title: "UI Overrides"}
],
redirects: %{
"getting-started-with-ash-authentication-phoenix" => "get-started"
},
groups_for_extras: [
Tutorials: ~r'documentation/tutorials',
"How To": ~r'documentation/how_to',
Topics: ~r'documentation/topics',
DSLs: ~r'documentation/dsls'
],
formatters: ["html"],
before_closing_head_tag: fn type ->
if type == :html do
"""
<script>
if (location.hostname === "hexdocs.pm") {
var script = document.createElement("script");
script.src = "https://plausible.io/js/script.js";
script.setAttribute("defer", "defer")
script.setAttribute("data-domain", "ashhexdocs")
document.head.appendChild(script);
}
</script>
"""
end
end,
filter_modules: fn module, _ ->
String.match?(to_string(module), ~r/^Elixir.AshAuthentication.Phoenix/) ||
String.match?(to_string(module), ~r/^Elixir.Mix.Tasks/)
end,
source_url_pattern:
"https://github.com/team-alembic/ash_authentication_phoenix/blob/main/%{path}#L%{line}",
groups_for_modules: [
Welcome: [
AshAuthentication.Phoenix
],
"Routing and Controller": [
AshAuthentication.Phoenix.Controller,
AshAuthentication.Phoenix.Plug,
AshAuthentication.Phoenix.Router,
AshAuthentication.Phoenix.LiveSession
],
Customisation: [
~r/^AshAuthentication\.Phoenix\..+Live/,
~r/^AshAuthentication\.Phoenix\.Overrides/,
~r/^AshAuthentication\.Phoenix\.Components/
],
Utilities: [
AshAuthentication.Phoenix.Utils.Flash
]
]
]
]
end
def package do
[
maintainers: [
"James Harton <[email protected]>",
"Zach Daniel <[email protected]>"
],
licenses: ["MIT"],
links: %{
"Source" => "https://github.com/team-alembic/ash_authentication_phoenix"
},
source_url: "https://github.com/team-alembic/ash_authentication_phoenix",
files: ~w[lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* documentation]
]
end
# Run "mix help compile.app" to learn about applications.
def application, do: application(Mix.env())
def application(:dev) do
[
extra_applications: [:logger],
mod: {Dev.Application, []}
]
end
def application(_),
do: [
extra_applications: [:logger]
]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ash_authentication, "~> 4.1"},
{:ash_phoenix, "~> 2.0"},
{:ash, "~> 3.0"},
{:jason, "~> 1.0"},
{:phoenix_html, "~> 4.0"},
{:phoenix_html_helpers, "~> 1.0"},
{:phoenix_live_view, "~> 0.18"},
{:phoenix_view, "~> 2.0"},
{:phoenix, "~> 1.6"},
{:bcrypt_elixir, "~> 3.0"},
{:slugify, "~> 1.3"},
{:igniter, "~> 0.3 and >= 0.3.62"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.18", only: [:dev, :test]},
{:ex_check, "~> 0.15", only: [:dev, :test]},
{:ex_doc, github: "elixir-lang/ex_doc", only: [:dev, :test], runtime: false},
{:faker, "~> 0.17", only: [:dev, :test]},
{:git_ops, "~> 2.4", only: [:dev, :test], runtime: false},
{:makeup_html, ">= 0.0.0", only: :dev, runtime: false},
{:mimic, "~> 1.7", only: [:dev, :test]},
{:mix_audit, "~> 2.1", only: [:dev, :test]},
{:plug_cowboy, "~> 2.5", only: [:dev, :test]},
{:sobelow, "~> 0.13", only: [:dev, :test]},
{:floki, ">= 0.30.0", only: :test}
]
end
defp aliases do
[
ci: [
"format --check-formatted",
"doctor --full --raise",
"credo",
"dialyzer",
"hex.audit",
"test"
],
credo: "credo --strict",
sobelow: "sobelow --skip",
docs: [
"compile",
fn _ -> AshAuthenticationPhoenix.Overrides.List.write_docs!() end,
"docs",
"spark.replace_doc_links"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support", "dev"]
defp elixirc_paths(:dev), do: ["lib", "test/support", "dev"]
defp elixirc_paths(_), do: ["lib"]
end