reactor/mix.exs

158 lines
4.6 KiB
Elixir
Raw Normal View History

2023-04-19 10:23:04 +12:00
defmodule Reactor.MixProject do
use Mix.Project
2024-02-29 09:28:25 +13:00
@version "0.7.0"
2023-04-19 14:13:10 +12:00
@description "An asynchronous, graph-based execution engine"
2023-04-19 10:23:04 +12:00
def project do
[
app: :reactor,
2023-04-19 14:13:10 +12:00
version: @version,
elixir: "~> 1.13",
2023-04-19 10:23:04 +12:00
start_permanent: Mix.env() == :prod,
2023-04-19 14:13:10 +12:00
deps: deps(),
2023-04-19 10:30:26 +12:00
package: package(),
2023-04-19 14:13:10 +12:00
description: @description,
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
source_url: "https://github.com/ash-project/reactor",
homepage_url: "https://github.com/ash-project/reactor",
dialyzer: [plt_add_apps: [:mix]],
docs: [
main: "readme",
2023-05-12 15:45:27 +12:00
extras: extra_documentation(),
groups_for_extras: extra_documentation_groups(),
2023-10-03 02:30:37 +13:00
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>
2023-10-03 02:30:37 +13:00
"""
end
end,
groups_for_modules: [
DSL: ~r/^Reactor\.Dsl$/,
Steps: ~r/^Reactor\.Step.*/,
Middleware: ~r/^Reactor\.Middleware.*/,
Builder: ~r/^Reactor\.Builder.*/,
Internals: ~r/^Reactor\..*/
],
2023-05-12 15:45:27 +12:00
extra_section: "GUIDES",
formatters: ["html"],
filter_modules: ~r/^Elixir.Reactor/,
source_url_pattern: "https://github.com/ash-project/reactor/blob/main/%{path}/#L%{line}",
spark: [
extensions: [
%{
module: Reactor.Dsl,
name: "Reactor.Dsl",
2023-05-12 15:45:27 +12:00
target: "Reactor",
type: "Reactor"
}
]
]
]
2023-04-19 10:23:04 +12:00
]
end
2023-04-19 10:30:26 +12:00
defp package do
[
2023-04-19 14:13:10 +12:00
name: :reactor,
files: ~w[lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* documentation],
2023-04-19 10:30:26 +12:00
licenses: ["MIT"],
links: %{
GitHub: "https://github.com/ash-project/reactor"
},
maintainers: [
"James Harton <james@harton.nz>",
"Zach Daniel <zach@zachdaniel.dev>"
],
source_url: "https://github.com/ash-project/reactor"
2023-04-19 10:30:26 +12:00
]
end
2023-04-19 10:23:04 +12:00
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Reactor.Application, []}
2023-04-19 10:23:04 +12:00
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
2024-03-02 11:32:01 +13:00
{:spark, "~> 2.0"},
{:splode, "~> 0.1.0"},
{:libgraph, "~> 0.16"},
{:telemetry, "~> 1.2"},
2023-04-19 14:13:10 +12:00
# Dev/Test dependencies
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
2023-06-23 15:19:46 +12:00
{:doctor, "~> 0.18", only: [:dev, :test], runtime: false},
{:ex_doc, github: "elixir-lang/ex_doc", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.16.0", only: [:dev, :test]},
{:git_ops, "~> 2.6.0", only: [:dev, :test]},
{:mimic, "~> 1.7", only: :test},
2023-06-23 15:21:28 +12:00
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false}
2023-04-19 14:13:10 +12:00
]
end
defp elixirc_paths(env) when env in ~w[dev test]a do
2023-04-19 14:13:10 +12:00
elixirc_paths(:prod) ++ ["test/support"]
end
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict",
docs: [
"spark.cheat_sheets",
"docs",
"spark.cheat_sheets_in_search",
"spark.replace_doc_links"
],
"spark.formatter": "spark.formatter --extensions Reactor.Dsl",
"spark.cheat_sheets": "spark.cheat_sheets --extensions Reactor.Dsl",
"spark.cheat_sheets_in_search": "spark.cheat_sheets_in_search --extensions Reactor.Dsl"
2023-04-19 10:23:04 +12:00
]
end
2023-05-12 15:45:27 +12:00
defp extra_documentation do
["README.md"]
|> Enum.concat(Path.wildcard("documentation/**/*.{md,livemd,cheatmd}"))
2023-05-12 15:45:27 +12:00
|> Enum.map(fn
"README.md" ->
{:"README.md", title: "Read Me", ash_hq?: false}
"documentation/tutorials/" <> _ = path ->
{String.to_atom(path), []}
"documentation/topics/" <> _ = path ->
{String.to_atom(path), []}
"documentation/dsls/" <> _ = path ->
{String.to_atom(path), []}
2023-05-12 15:45:27 +12:00
end)
end
defp extra_documentation_groups do
[
Tutorials: ~r'documentation/tutorials',
DSLs: ~r'documentation/dsls'
]
2023-05-12 15:45:27 +12:00
end
2023-04-19 10:23:04 +12:00
end