Packages

Convenience macros and functions for piping in Elixir

Current section

Files

Jump to
exordia mix.exs
Raw

mix.exs

defmodule Exordia.MixProject do
use Mix.Project
def project do
[
app: :exordia,
version: "0.8.2",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
name: "Exordia",
description: "Convenience macros and functions for piping in Elixir",
source_url: "https://github.com/rvlzzr/exordia",
build_path: "_build",
config_path: "config/config.exs",
deps_path: "deps",
lockfile: "mix.lock",
package: [
name: :exordia,
files: ["lib", "mix.exs", "README.md", "LICENSE"],
licenses: ["MIT"],
maintainers: ["Anti Revoluzzer"],
links: %{"GitHub" => "https://github.com/rvlzzr/exordia"}
],
deps: [
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:credo, "~> 0.9-rc", only: [:dev], runtime: false},
{:ex_doc, "~> 0.18", only: [:dev], runtime: false}
],
elixirc_options: [
# warnings_as_errors: true
],
build_embedded: Mix.env() == :prod,
erlc_options: [
warn_missing_spec_all: true,
warnings_as_errors: true,
warn_format: 2,
warn_export_all: true,
warn_export_vars: true,
warn_obsolete_guard: true,
warn_unused_import: true
],
dialyzer: [
ignore_warnings: "config/dialyzer.ignore-warnings",
flags: [
:error_handling,
:race_conditions,
:underspecs,
:unmatched_returns,
:unknown
]
]
]
end
def application do
[
extra_applications: []
]
end
end