File tree Expand file tree Collapse file tree 9 files changed +16
-11
lines changed
Expand file tree Collapse file tree 9 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Create a `demo_live.exs` file:
1212
1313``` elixir
1414Mix .install ([
15- {:phoenix_playground , " ~> 0.1.0 " }
15+ {:phoenix_playground , " ~> 0.1.5 " }
1616])
1717
1818defmodule DemoLive do
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.3 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66defmodule DemoController do
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.3 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66defmodule DemoController do
@@ -28,7 +28,7 @@ defmodule DemoController do
2828 end
2929end
3030
31- Logger . configure ( level: :info )
31+ Logger . configure ( level: :warning )
3232ExUnit . start ( )
3333
3434defmodule DemoControllerTest do
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.4 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66defmodule DemoHooks do
@@ -30,4 +30,4 @@ defmodule DemoHooks do
3030 end
3131end
3232
33- PhoenixPlayground . start ( live: DemoHook )
33+ PhoenixPlayground . start ( live: DemoHooks )
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.3 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66defmodule DemoLive do
Original file line number Diff line number Diff line change 22
33``` elixir
44Mix .install ([
5- {:phoenix_playground , " ~> 0.1.3 " }
5+ {:phoenix_playground , " ~> 0.1.5 " }
66])
77```
88
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.3 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66defmodule DemoLive do
@@ -27,7 +27,7 @@ defmodule DemoLive do
2727 end
2828end
2929
30- Logger . configure ( level: :info )
30+ Logger . configure ( level: :warning )
3131ExUnit . start ( )
3232
3333defmodule DemoLiveTest do
Original file line number Diff line number Diff line change 11#!/usr/bin/env elixir
22Mix . install ( [
3- { :phoenix_playground , "~> 0.1.3 " }
3+ { :phoenix_playground , "~> 0.1.5 " }
44] )
55
66PhoenixPlayground . start (
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env elixir
2+ Mix . install ( [
3+ { :phoenix_playground , "~> 0.1.5" }
4+ ] )
5+
16defmodule CounterLive do
27 use Phoenix.LiveView
38
You can’t perform that action at this time.
0 commit comments