Current section

Files

Jump to
buffy mix.exs
Raw

mix.exs

defmodule Buffy.MixProject do
use Mix.Project
def project do
[
app: :buffy,
name: "Buffy",
description: "Buffy the Process Slayer",
version: "3.0.1",
elixir: "~> 1.18",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
source_url: "https://github.com/stordco/buffy",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.circle": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Buffy.Application, []}
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:telemetry, ">= 1.0.0"},
# Dev & Test dependencies
{:benchee, "~> 1.0", only: [:dev, :test]},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.22", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.18", only: :test},
{:ex_doc, "~> 0.28", only: [:dev, :test], runtime: false},
{:patch, "~> 0.16", only: [:dev, :test], runtime: false},
{:stream_data, "~> 1.0", only: [:dev, :test], runtime: false}
]
end
defp package do
[
files: ~w(lib mix.exs .formatter.exs README.md CHANGELOG.md LICENSE.md),
licenses: ["MIT"],
links: %{
Changelog: "https://github.com/stordco/buffy/releases",
GitHub: "https://github.com/stordco/buffy"
}
]
end
defp docs do
[
before_closing_body_tag: &before_closing_body_tag/1,
extras: ["README.md", "CHANGELOG.md", "LICENSE.md"],
main: "readme",
# The CHANGELOG records historical breaking changes that reference
# functions which no longer exist (e.g. `Buffy.Throttle.throttle/1`,
# removed in v2.0.0). ex_doc tries to autolink those references and
# warns when it can't resolve them. Skip the warnings here so the
# historical entries stay accurate without polluting the docs build.
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]
]
end
defp before_closing_body_tag(:html) do
"""
<script src="https://cdn.jsdelivr.net/npm/mermaid@8.13.3/dist/mermaid.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
mermaid.initialize({ startOnLoad: false });
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, function (svgSource, bindListeners) {
graphEl.innerHTML = svgSource;
bindListeners && bindListeners(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
end
defp before_closing_body_tag(_), do: ""
end