feat: migration to liveview 1.1

This commit is contained in:
Moritz 2025-07-17 18:53:04 +02:00
parent 4dd114c22a
commit aa843933f9
Signed by: moritz
GPG key ID: 1020A035E5DD0824
4 changed files with 12 additions and 7 deletions

View file

@ -9,6 +9,7 @@ defmodule Mv.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
consolidate_protocols: Mix.env() != :dev,
compilers: [:phoenix_live_view] ++ Mix.compilers(),
aliases: aliases(),
deps: deps(),
listeners: [Phoenix.CodeReloader]
@ -45,14 +46,14 @@ defmodule Mv.MixProject do
{:ash_authentication, "~> 4.9"},
{:ash_authentication_phoenix, "~> 2.10"},
{:igniter, "~> 0.6", only: [:dev, :test]},
{:phoenix, "~> 1.8.0-rc.3", override: true},
{:phoenix, "~> 1.8.0-rc.4", override: true},
{:phoenix_ecto, "~> 4.5"},
{:ecto_sql, "~> 3.10"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 1.0.9"},
{:floki, ">= 0.30.0", only: :test},
{:phoenix_live_view, "~> 1.1.0-rc.3"},
{:lazy_html, ">= 0.0.0", only: :test},
{:phoenix_live_dashboard, "~> 0.8.3"},
{:esbuild, "~> 0.9", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.3", runtime: Mix.env() == :dev},