forked from ash-project/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
121 lines (111 loc) · 3.29 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
defmodule Spark.MixProject do
use Mix.Project
@version "2.1.23"
@description "Generic tooling for building DSLs"
def project do
[
app: :spark,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs(),
description: @description,
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
source_url: "https://github.com/ash-project/spark",
homepage_url: "https://github.com/ash-project/spark",
dialyzer: [plt_add_apps: [:mix]]
]
end
defp elixirc_paths(:test) do
elixirc_paths(:prod) ++ ["test/support"]
end
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp docs do
# The main page in the docs
[
main: "get-started-with-spark",
source_ref: "v#{@version}",
extra_section: "GUIDES",
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,
spark: [
mix_tasks: [
Formatting: [
Mix.Tasks.Spark.Formatter
]
]
],
extras: [
"documentation/how_to/upgrade-to-2.0.md",
"documentation/how_to/writing-extensions.md",
"documentation/how_to/split-up-large-dsls.md",
"documentation/tutorials/get-started-with-spark.md"
],
groups_for_extras: [
"How To": ~r/documentation\/how_to/,
Tutorials: ~r/documentation\/tutorials/
],
groups_for_modules: [
"DSLs and Extensions": ~r/(^Spark.Dsl|^Spark.OptionsHelpers|^Spark.Options)/,
Errors: [Spark.Error.DslError],
Internals: ~r/.*/
]
]
end
defp package do
[
name: :spark,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation),
links: %{
GitHub: "https://github.com/ash-project/spark"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:sourceror, "~> 1.0"},
{:jason, "~> 1.4"},
# Dev/Test dependencies
{:ex_doc, "~> 0.32.0", 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},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:test, :dev, :docs]},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false}
]
end
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict"
]
end
end