Packages

OpenGraph template + hierarchical assignment module for PhoenixKit

Current section

Files

Jump to
Raw

mix.exs

defmodule PhoenixKitOG.MixProject do
use Mix.Project
@version "0.2.0"
@source_url "https://github.com/BeamLabEU/phoenix_kit_og"
def project do
[
app: :phoenix_kit_og,
version: @version,
elixir: "~> 1.18",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
description: "OpenGraph template + hierarchical assignment module for PhoenixKit",
package: package(),
dialyzer: [plt_add_apps: [:phoenix_kit]],
name: "PhoenixKitOG",
source_url: @source_url,
docs: docs()
]
end
def application do
[
extra_applications: [:logger, :phoenix_kit]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
quality: ["format", "credo --strict", "dialyzer"],
"quality.ci": ["format --check-formatted", "credo --strict", "dialyzer"],
precommit: [
"compile --force --warnings-as-errors",
"deps.unlock --check-unused",
"cmd mix hex.audit",
"quality.ci"
]
]
end
# phoenix_kit deps resolve from Hex by default. Export PHOENIX_KIT_PATH=
# ../phoenix_kit for cross-repo work against a local checkout.
defp pk_dep(app, requirement, opts \\ []) do
env_var = String.upcase(Atom.to_string(app)) <> "_PATH"
case System.get_env(env_var) do
nil when opts == [] -> {app, requirement}
nil -> {app, requirement, opts}
path -> {app, [path: path, override: true] ++ opts}
end
end
defp deps do
[
pk_dep(:phoenix_kit, "~> 1.7.189"),
{:phoenix_live_view, "~> 1.1"},
{:ecto_sql, "~> 3.13"},
# SVG → PNG rendering. Ships a precompiled NIF via rustler_precompiled
# — no system binary needed in the common case. Optional: resvg 0.5.0
# (the latest on Hex) hard-pins `rustler_precompiled ~> 0.8.1`, which
# can conflict with a host app that needs a newer rustler_precompiled
# for something else (there's no resvg release compatible with it —
# this is an upstream constraint, not ours to loosen). Render.Rasterizer
# already falls back to the `resvg` CLI, `rsvg-convert`, or ImageMagick
# when the NIF isn't compiled in, so making this required would block
# installation for hosts that can't take the NIF's rustler_precompiled
# version. Add `{:resvg, "~> 0.5"}` directly in the host app to opt in.
{:resvg, "~> 0.5", optional: true},
# `mdex_native` (transitive via phoenix_kit) needs rustler on hosts
# where its precompiled NIF doesn't match the local NIF version.
# Optional + `>= 0.0.0` so we don't pin a version that fights hex
# deps; matches the parent app's declaration.
{:rustler, ">= 0.0.0", optional: true},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:lazy_html, ">= 0.1.0", only: :test}
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(lib .formatter.exs mix.exs README.md CHANGELOG.md LICENSE)
]
end
defp docs do
[
main: "PhoenixKitOG",
source_ref: "v#{@version}",
extras: ["CHANGELOG.md"]
]
end
end