-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathmix.exs
More file actions
151 lines (140 loc) · 4.59 KB
/
Copy pathmix.exs
File metadata and controls
151 lines (140 loc) · 4.59 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
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
# SPDX-FileCopyrightText: 2022 spark contributors <https://github.com/ash-project/spark/graphs/contributors>
#
# SPDX-License-Identifier: MIT
defmodule Spark.MixProject do
use Mix.Project
@version "2.7.2"
@description "Generic tooling for building DSLs"
def project do
[
app: :spark,
version: @version,
elixir: "~> 1.15",
elixirc_options: [
warnings_as_errors: true,
ignore_module_conflict: Mix.env() == :test,
parser_options: [
token_metadata: true,
parser_columns: true
]
],
test_elixirc_options: [debug_info: true],
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: "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,
logo: "logos/logo.svg",
assets: %{"logos" => "logos"},
spark: [
mix_tasks: [
Formatting: [
Mix.Tasks.Spark.Formatter
]
]
],
extras: [
"documentation/tutorials/get-started-with-spark.md",
"documentation/how_to/upgrade-to-2.0.md",
"documentation/how_to/writing-extensions.md",
"documentation/how_to/split-up-large-dsls.md",
"documentation/how_to/use-source-annotations.md",
"documentation/how_to/setup-autocomplete.md",
"documentation/how_to/build-extensions-with-builders.md",
"documentation/how_to/test-spark-verifiers.md"
],
groups_for_extras: [
Tutorials: ~r/documentation\/tutorials/,
"How To": ~r/documentation\/how_to/
],
groups_for_modules: [
"DSLs and Extensions": ~r/^Spark.Dsl/,
Options: ~r/^Spark.Options/,
Errors: [Spark.Error.DslError],
Internals: ~r/.*/
]
]
end
defp package do
[
maintainers: [
"Zach Daniel <zach@zachdaniel.dev>"
],
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation usage-rules.md),
links: %{
"GitHub" => "https://github.com/ash-project/spark",
"Changelog" => "https://github.com/ash-project/spark/blob/main/CHANGELOG.md",
"Discord" => "https://discord.gg/HTHRaaVPUc",
"Website" => "https://ash-hq.org",
"Forum" => "https://elixirforum.com/c/elixir-framework-forums/ash-framework-forum",
"REUSE Compliance" => "https://api.reuse.software/info/github.com/ash-project/spark"
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:sourceror, "~> 1.2", optional: true},
{:jason, "~> 1.4", optional: true},
{:igniter, "~> 0.2 and >= 0.3.64", optional: true},
# Dev/Test dependencies
{:benchee, "~> 1.3", only: [:dev, :test]},
{:eflame, "~> 1.0", only: [:dev, :test], runtime: false},
{: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},
{: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: [:dev, :test, :docs]},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false}
]
end
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict"
]
end
end