diff options
author | Lain Soykaf <lain@lain.com> | 2021-12-26 16:41:17 +0100 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2021-12-26 16:41:17 +0100 |
commit | 6efbd088546d7b95126b3100bca57b41e9482211 (patch) | |
tree | efc8663deebf8df648e2c3ccb657742ce102d823 /mix.exs | |
parent | 4e98ba3c3a96548fe6d7fa8705898c660b788fea (diff) | |
parent | 2e2fb5f8026a8d70f5d64dcc94f8253a5db24020 (diff) | |
download | pleroma-6efbd088546d7b95126b3100bca57b41e9482211.tar.gz pleroma-6efbd088546d7b95126b3100bca57b41e9482211.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into finch
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -8,7 +8,7 @@ defmodule Pleroma.Mixfile do elixir: "~> 1.9", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), - elixirc_options: [warnings_as_errors: warnings_as_errors(Mix.env())], + elixirc_options: [warnings_as_errors: warnings_as_errors()], xref: [exclude: [:eldap]], start_permanent: Mix.env() == :prod, aliases: aliases(), @@ -79,6 +79,7 @@ defmodule Pleroma.Mixfile do :comeonin, :quack, :fast_sanitize, + :os_mon, :ssl ], included_applications: [:ex_syslogger] @@ -90,8 +91,7 @@ defmodule Pleroma.Mixfile do defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] - defp warnings_as_errors(:prod), do: false - defp warnings_as_errors(_), do: true + defp warnings_as_errors, do: System.get_env("CI") == "true" # Specifies OAuth dependencies. defp oauth_deps do @@ -129,7 +129,7 @@ defmodule Pleroma.Mixfile do {:trailing_format_plug, "~> 0.0.7"}, {:fast_sanitize, "~> 0.2.0"}, {:html_entities, "~> 0.5", override: true}, - {:phoenix_html, "~> 2.14"}, + {:phoenix_html, "~> 3.1", override: true}, {:calendar, "~> 1.0"}, {:cachex, "~> 3.2"}, {:poison, "~> 3.0", override: true}, @@ -196,6 +196,8 @@ defmodule Pleroma.Mixfile do {:majic, "~> 1.0"}, {:eblurhash, "~> 1.1.0"}, {:open_api_spex, "~> 3.10"}, + {:phoenix_live_dashboard, "~> 0.6.2"}, + {:ecto_psql_extras, "~> 0.6"}, # indirect dependency version override {:plug, "~> 1.10.4", override: true}, |