From 5ea437b9f144552975c8610e339efcdfd6d373bb Mon Sep 17 00:00:00 2001 From: SphericalKat Date: Thu, 9 May 2024 18:39:59 +0530 Subject: [PATCH] fix(phoenix): remove deprecated items Signed-off-by: SphericalKat --- assets/package-lock.json | 5 +++-- config/test.exs | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/assets/package-lock.json b/assets/package-lock.json index 2ed9493..57e84c5 100644 --- a/assets/package-lock.json +++ b/assets/package-lock.json @@ -20,10 +20,11 @@ } }, "../deps/phoenix": { - "version": "0.0.1" + "version": "1.6.16", + "license": "MIT" }, "../deps/phoenix_html": { - "version": "0.0.1" + "version": "3.3.1" }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", diff --git a/config/test.exs b/config/test.exs index ce23068..a1edaf1 100644 --- a/config/test.exs +++ b/config/test.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # Only in tests, remove the complexity from the password hashing algorithm config :bcrypt_elixir, :log_rounds, 1 diff --git a/mix.exs b/mix.exs index 58533f7..afaa1a3 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Ketbin.MixProject do version: "0.1.0", elixir: "~> 1.12", elixirc_paths: elixirc_paths(Mix.env()), - compilers: [:phoenix, :gettext] ++ Mix.compilers(), + compilers: [:phoenix] ++ Mix.compilers(), start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps()