Current section
Files
Jump to
Current section
Files
ash_diagram
mix.exs
mix.exs
defmodule AshDiagram.MixProject do
use Mix.Project
@version "0.2.1"
def project do
[
app: :ash_diagram,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
consolidate_protocols: Mix.env() != :test,
deps: deps(),
name: "AshDiagram",
description:
"AshDiagram is a library for generating beautiful, interactive diagrams to visualize your Ash Framework applications.",
source_url: "https://github.com/team-alembic/ash_diagram",
package: package(),
docs: &docs/0
]
end
defp elixirc_paths(env)
defp elixirc_paths(:test), do: ["test/support", "lib"]
defp elixirc_paths(_env), do: ["lib"]
def application do
[
extra_applications: [:logger],
env: [
clarity_content_providers: [
AshDiagram.ClarityContent.ErDiagram,
AshDiagram.ClarityContent.ClassDiagram,
AshDiagram.ClarityContent.ArchitectureDiagram,
AshDiagram.ClarityContent.PolicyDiagram,
AshDiagram.ClarityContent.PolicySimulation
]
]
]
end
defp deps do
# styler:sort
[
{:ash, "~> 3.7"},
{:clarity, "~> 0.3 and >= 0.3.0", optional: true},
# Development
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:crux, "~> 0.1.0"},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:doctest_formatter, "~> 0.4.0", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.18", only: [:dev, :test]},
{:ex_check, "~> 0.15", only: [:dev, :test]},
{:ex_cmd, "~> 0.16.0", optional: true},
{:ex_doc, "~> 0.38.2", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.4", only: [:dev, :test], runtime: false},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:picosat_elixir, "~> 0.2.3", only: [:dev, :test]},
{:req, "~> 0.5.15", optional: true},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:styler, "~> 1.5", only: [:dev, :test], runtime: false}
]
end
defp package do
[
maintainers: ["Alembic Pty Ltd"],
files: [
"lib",
"LICENSE*",
"mix.exs",
"README*"
],
licenses: ["Apache-2.0"],
links: %{"Github" => "https://github.com/team-alembic/ash_diagram"}
]
end
defp docs do
[
main: "AshDiagram",
source_ref: "v#{@version}",
groups_for_modules: [
"Generation / Introspection": ~r/AshDiagram\.Data(\..*)?$/,
"Diagram / ER": ~r/AshDiagram\.EntityRelationship(\..*)?$/,
"Diagram / Class": ~r/AshDiagram\.Class(\..*)?$/,
"Diagram / C4": ~r/AshDiagram\.C4(\..*)?$/,
"Diagram / Flowchart": ~r/AshDiagram\.Flowchart(\..*)?$/,
Renderers: ~r/AshDiagram\.Renderer(\..*)?$/
],
logo: "logos/logo.svg",
assets: %{"logos" => "logos"},
before_closing_body_tag: &before_closing_body_tag/1
]
end
defp before_closing_body_tag(_format) do
"""
<script defer src="https://cdn.jsdelivr.net/npm/mermaid@11.12.0/dist/mermaid.min.js"></script>
<script>
let initialized = false;
window.addEventListener("exdoc:loaded", () => {
if (!initialized) {
mermaid.initialize({
startOnLoad: false,
theme: document.body.className.includes("dark") ? "dark" : "default"
});
initialized = true;
}
let id = 0;
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
const preEl = codeEl.parentElement;
const graphDefinition = codeEl.textContent;
const graphEl = document.createElement("div");
const graphId = "mermaid-graph-" + id++;
mermaid.render(graphId, graphDefinition).then(({svg, bindFunctions}) => {
graphEl.innerHTML = svg;
bindFunctions?.(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
end
end