- Add vendored Gaiia library (path: vendor/gaiia) with auto-generated GraphQL queries and mutations from the Gaiia API schema - Add startAddInventoryItemsJob + updateInventoryItem mutations - Remove `:cbor` (was unused — no references anywhere) - Remove stale Honeybadger filter module, tests, router plug, and config - Remove stale Tidewave plug from endpoint (dev-only, dep already gone) - Unlock leftover deps from lock file
35 lines
827 B
Elixir
35 lines
827 B
Elixir
defmodule Gaiia.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :gaiia,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.19",
|
|
start_permanent: Mix.env() == :prod,
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
deps: deps(),
|
|
dialyzer: [
|
|
plt_add_apps: [:ex_unit],
|
|
flags: [:error_handling, :underspecs, :unmatched_returns]
|
|
]
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[extra_applications: [:logger]]
|
|
end
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
|
|
defp deps do
|
|
[
|
|
{:req, "~> 0.5"},
|
|
{:jason, "~> 1.4"},
|
|
{:styler, "~> 1.5", only: [:dev, :test], runtime: false},
|
|
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
|
|
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
|
|
]
|
|
end
|
|
end
|