Current section
Files
Jump to
Current section
Files
ash_toon_ex
mix.exs
mix.exs
defmodule AshToonEx.MixProject do
use Mix.Project
@name :ash_toon_ex
@version "0.1.1"
@description "Ash extension for implementing ToonEx.Encoder protocol"
@github_url "https://github.com/ohhi-vn/ash_toon_ex"
def project do
[
app: @name,
version: @version,
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
consolidate_protocols: Mix.env() != :test,
package: package(),
deps: deps(),
docs: &docs/0,
aliases: aliases(),
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
]
end
defp package() do
[
maintainers: ["Manh Vu"],
description: @description,
licenses: ["MIT"],
links: %{Github: @github_url},
files: ~w(mix.exs lib .formatter.exs LICENSE.md README.md),
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ash, "~> 3.0 and >= 3.6.2"},
{:spark, ">= 2.1.21 and < 3.0.0"},
{:igniter, "~> 0.5", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.32", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:sourceror, "~> 1.7", only: [:dev, :test], runtime: false},
{:freedom_formatter, "~> 2.1", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.16.0", only: [:dev, :test], runtime: false},
{:toon_ex, "~> 0.8"},
]
end
def docs() do
[
homepage_url: @github_url,
source_url: @github_url,
source_ref: "v#{@version}",
main: "readme",
extras: [
"README.md": [title: "Guide"],
"LICENSE.md": [title: "License"],
"documentation/dsls/DSL-AshToonEx.Resource.md": [
title: "DSL: AshToonEx.Resource",
search_data: Spark.Docs.search_data_for(AshToonEx.Resource),
],
"documentation/dsls/DSL-AshToonEx.TypedStruct.md": [
title: "DSL: AshToonEx.TypedStruct",
search_data: Spark.Docs.search_data_for(AshToonEx.TypedStruct),
],
],
]
end
defp aliases() do
[
docs: ["spark.cheat_sheets", "docs", "spark.replace_doc_links"],
"spark.cheat_sheets": "spark.cheat_sheets --extensions AshToonEx.Resource,AshToonEx.TypedStruct",
"spark.formatter": [
"spark.formatter --extensions AshToonEx.Resource,AshToonEx.TypedStruct",
"format .formatter.exs",
],
]
end
end