Skip to content

Commit

Permalink
Update to latest LVN
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardarella committed Dec 19, 2024
1 parent ebc8bcd commit 1dc5222
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"floki": {:hex, :floki, "0.37.0", "b83e0280bbc6372f2a403b2848013650b16640cd2470aea6701f0632223d719e", [:mix], [], "hexpm", "516a0c15a69f78c47dc8e0b9b3724b29608aa6619379f91b1ffa47109b5d0dd3"},
"gettext": {:hex, :gettext, "0.26.2", "5978aa7b21fada6deabf1f6341ddba50bc69c999e812211903b169799208f2a8", [:mix], [{:expo, "~> 0.5.1 or ~> 1.0", [hex: :expo, repo: "hexpm", optional: false]}], "hexpm", "aa978504bcf76511efdc22d580ba08e2279caab1066b76bb9aa81c4a1e0a32a5"},
"jason": {:hex, :jason, "1.4.4", "b9226785a9aa77b6857ca22832cffa5d5011a667207eb2a0ad56adb5db443b8a", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "c5eb0cab91f094599f94d55bc63409236a8ec69a21a67814529e8d5f6cc90b3b"},
"live_view_native": {:git, "https://github.com/liveview-native/live_view_native.git", "b7555f79bfe10b0b5e4623e2ddc45168f4d20ce8", [branch: "main"]},
"live_view_native_live_form": {:git, "https://github.com/liveview-native/liveview-native-live-form.git", "de83d04d5f586fd20849490daae30a85ad321d77", []},
"live_view_native_stylesheet": {:git, "https://github.com/liveview-native/live_view_native_stylesheet.git", "4e7f0fc26e3b3ba1d27a617d5eb6a3117c278954", [branch: "main"]},
"live_view_native": {:git, "https://github.com/liveview-native/live_view_native.git", "68118fcaa4a5622054225558302c8a9fbd3b225c", [branch: "main"]},
"live_view_native_live_form": {:git, "https://github.com/liveview-native/liveview-native-live-form.git", "0b94bafe184744537a5eb43a2a66339a7e39c8ae", []},
"live_view_native_stylesheet": {:git, "https://github.com/liveview-native/live_view_native_stylesheet.git", "d2a9fb8ed37723222c6abd2aa3575224db704377", [branch: "main"]},
"live_view_native_test_endpoint": {:git, "https://github.com/liveview-native/live_view_native_test_endpoint.git", "be09319cc2def0e93a2aba79d8db7ba989560afa", [branch: "main"]},
"makeup": {:hex, :makeup, "1.2.1", "e90ac1c65589ef354378def3ba19d401e739ee7ee06fb47f94c687016e3713d1", [:mix], [{:nimble_parsec, "~> 1.4", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "d36484867b0bae0fea568d10131197a4c2e47056a6fbe84922bf6ba71c8d17ce"},
"makeup_elixir": {:hex, :makeup_elixir, "1.0.1", "e928a4f984e795e41e3abd27bfc09f51db16ab8ba1aebdba2b3a575437efafc2", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "7284900d412a3e5cfd97fdaed4f5ed389b8f2b4cb49efc0eb3bd10e2febf9507"},
Expand Down
3 changes: 2 additions & 1 deletion test/support/live/inline_live.ex
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ defmodule LiveViewNativeTest.Jetpack.InlineLive do
formats: [:jetpack],
layouts: [
jetpack: {LiveViewNativeTest.Jetpack.Layouts.Jetpack, :app}
]
],
dispatch_to: &Module.concat/2

def mount(_params, _session, socket) do
{:ok, assign(socket, :count, 100)}
Expand Down
5 changes: 3 additions & 2 deletions test/support/live/template_live.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ defmodule LiveViewNativeTest.Jetpack.TemplateLive do
formats: [:jetpack],
layouts: [
jetpack: {LiveViewNativeTest.Jetpack.Layouts.Jetpack, :app}
]
],
dispatch_to: &Module.concat/2

def mount(_params, _session, socket) do
{:ok, assign(socket, :count, 100)}
end

def render(assigns), do: ~H""
end
end

0 comments on commit 1dc5222

Please sign in to comment.