-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmix.exs
144 lines (132 loc) · 4.03 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
defmodule Igniter.MixProject do
use Mix.Project
@version "0.5.21"
@install_version "~> 0.5"
@description """
A code generation and project patching framework
"""
def project do
[
app: :igniter,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
description: @description,
aliases: aliases(),
package: package(),
docs: docs(),
deps: deps(),
dialyzer: [
plt_add_apps: [:mix]
]
]
end
defp elixirc_paths(:test) do
elixirc_paths(:dev) ++ ["test/support"]
end
defp elixirc_paths(_env) do
["lib"]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
# if you change this, change it in the installer archive too.
extra_applications: [:logger, :public_key, :ssl, :inets, :eex],
plt_add_apps: [:mix]
]
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
source_url: "https://github.com/ash-project/igniter",
logo: "logos/igniter-logo-small.png",
extra_section: "GUIDES",
extras: [
{"README.md", title: "Home"},
"documentation/writing-generators.md",
"documentation/configuring-igniter.md",
"documentation/upgrades.md",
"CHANGELOG.md"
],
groups_for_modules: [
"Writing Mix tasks": [~r"Igniter\.Mix\..*"],
"Project modifications": [~r"Igniter\.Refactors\..*", ~r"Igniter\.Project\..*"],
"Code modifications": [~r"Igniter\.Code\..*"],
Extensions: [Igniter.Extension, ~r"Igniter\.Extensions\..*"],
"Library support": [~r"Igniter\.Libs\..*"],
Utilities: [~r"Igniter\.Util\..*"]
],
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
]
end
defp package do
[
name: :igniter,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG*),
links: %{
GitHub: "https://github.com/ash-project/igniter",
Discord: "https://discord.gg/HTHRaaVPUc",
Website: "https://ash-hq.org",
Forum: "https://elixirforum.com/c/ash-framework-forum/"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:rewrite, "~> 1.1 and >= 1.1.1"},
{:glob_ex, "~> 0.1.7"},
{:spitfire, "~> 0.1 and >= 0.1.3"},
{:sourceror, "~> 1.4"},
{:jason, "~> 1.4"},
{:req, "~> 0.5"},
{:phx_new, "~> 1.7", optional: true},
{:inflex, "~> 2.0"},
{:owl, "~> 0.11"},
# Dev/Test dependencies
{:eflame, "~> 1.0", only: [:dev, :test]},
{:ex_doc, "~> 0.32", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.12", only: [:dev, :test]},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:mimic, "~> 1.7", only: [:test]},
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:benchee, "~> 1.1", only: [:dev, :test]},
{:doctor, "~> 0.21", only: [:dev, :test]}
]
end
defp aliases do
[
credo: "credo --strict",
"archive.build": &raise_on_archive_build/1
]
end
@doc false
def install_version, do: @install_version
defp raise_on_archive_build(_) do
Mix.raise("""
You are trying to install "igniter" as an archive, which is not supported. \
You probably meant to install "igniter_new" instead.
""")
end
end