X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=mix.exs;h=b5bcd027fb16d300d5108d07137bee3318064d59;hb=d56772c813c86c4eb4c4ae97782f4d6d57a98abe;hp=1a28b6710e67a161ba365ecb9f4c460d788be6e5;hpb=3ce16e5a56be01686a03f40931f666ac164df6e8;p=akkoma diff --git a/mix.exs b/mix.exs index 1a28b6710..b5bcd027f 100644 --- a/mix.exs +++ b/mix.exs @@ -8,6 +8,12 @@ defmodule Pleroma.Mixfile do elixir: "~> 1.4", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), + elixirc_options: + if Mix.env() == :test do + [] + else + [warnings_as_errors: true] + end, start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), @@ -68,7 +74,8 @@ defmodule Pleroma.Mixfile do {:crypt, git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"}, {:cors_plug, "~> 1.5"}, - {:ex_doc, "> 0.18.3 and < 0.20.0", only: :dev, runtime: false} + {:ex_doc, "> 0.18.3 and < 0.20.0", only: :dev, runtime: false}, + {:web_push_encryption, "~> 0.2.1"} ] end