Skip to content

Commit

Permalink
bump liveview
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Nelson committed Jan 18, 2024
1 parent c0dad9e commit a8be79c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 25 deletions.
11 changes: 4 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,21 @@
"problemMatcher": "$mixTestFailure"
},
{
"label": "run testbed test at cursor",
"label": "run test at cursor",
"type": "shell",
"command": "mix",
"args": [
"test",
"../${relativeFile}:${lineNumber}",
"${relativeFile}:${lineNumber}",
"--color",
"--trace"
],
"options": {
"cwd": "${workspaceRoot}/testbed",
"cwd": "${workspaceRoot}",
"requireFiles": [
"test/**/test_helper.exs",
"test/**/*_test.exs"
],
"env": {
"GCP_CREDENTIALS": "{\"stuff\": \"foo\"}"
}
]
},
"problemMatcher": "$mixTestFailure",
"group": {
Expand Down
2 changes: 1 addition & 1 deletion lib/live_elements_testbed_web/live/simple_guy.html.heex
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<.simple_guy age={@age} first_name={@first_name}></.simple_guy>
<.simple_guy age={@age} first-name={@first_name}></.simple_guy>
3 changes: 1 addition & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ defmodule LiveElementsTestbed.MixProject do
{:phoenix, "~> 1.7.1"},
{:phoenix_html, "~> 3.3"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.18.16"},
{:phoenix_live_view, "~> 0.20.3"},
{:floki, ">= 0.30.0", only: :test},
{:phoenix_live_dashboard, "~> 0.7.2"},
{:esbuild, "~> 0.5", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.1.8", runtime: Mix.env() == :dev},
{:swoosh, "~> 1.3"},
Expand Down
Loading

0 comments on commit a8be79c

Please sign in to comment.