igniter/mix.exs

106 lines
2.8 KiB
Elixir
Raw Normal View History

2024-05-28 15:30:41 +12:00
defmodule Igniter.MixProject do
use Mix.Project
2024-06-21 05:40:31 +12:00
@version "0.2.0"
2024-05-30 02:28:08 +12:00
2024-06-13 12:37:09 +12:00
@description """
A code generation and project patching framework
"""
2024-05-28 15:30:41 +12:00
def project do
[
app: :igniter,
2024-05-30 02:28:08 +12:00
version: @version,
2024-06-06 02:12:07 +12:00
elixir: "~> 1.15",
2024-05-28 15:30:41 +12:00
start_permanent: Mix.env() == :prod,
2024-06-13 12:37:09 +12:00
description: @description,
aliases: aliases(),
2024-06-13 12:36:32 +12:00
package: package(),
2024-05-30 02:28:08 +12:00
docs: docs(),
2024-05-28 15:30:41 +12:00
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
2024-05-30 02:28:08 +12:00
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
2024-06-13 10:22:08 +12:00
logo: "logos/igniter-logo-small.png",
2024-05-30 02:28:08 +12:00
extra_section: "GUIDES",
extras: [
2024-06-13 11:37:32 +12:00
{"README.md", title: "Home"},
2024-06-13 12:34:44 +12:00
"documentation/writing-generators.md",
"CHANGELOG.md"
2024-05-30 02:28:08 +12: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>
"""
end
end
]
end
2024-06-13 12:36:32 +12:00
defp package do
[
name: :igniter,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG*),
links: %{
GitHub: "https://github.com/ash-project/igniter",
Discord: "https://discord.gg/HTHRaaVPUc",
Website: "https://ash-hq.org",
Forum: "https://elixirforum.com/c/elixir-framework-forums/ash-framework-forum"
}
]
end
2024-05-28 15:30:41 +12:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:rewrite, "~> 0.9"},
2024-05-30 02:28:08 +12:00
{:req, "~> 0.4"},
2024-06-04 15:14:36 +12:00
{:glob_ex, "~> 0.1.7"},
2024-06-20 11:25:45 +12:00
{:spitfire, "~> 0.1 and >= 0.1.3"},
{:sourceror, "~> 1.3"},
2024-05-30 02:28:08 +12:00
# Dev/Test dependencies
{:eflame, "~> 1.0", only: [:dev, :test]},
{: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},
{:mimic, "~> 1.7", only: [:test]},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:benchee, "~> 1.1", only: [:dev, :test]},
{:doctor, "~> 0.21", only: [:dev, :test]}
2024-05-28 15:30:41 +12:00
]
end
defp aliases do
[
sobelow: "sobelow --skip",
credo: "credo --strict"
]
end
2024-05-28 15:30:41 +12:00
end