From 089466bf66cf1187f2b37c1fb387d6624c8f5766 Mon Sep 17 00:00:00 2001 From: Wout De Puysseleir Date: Sat, 25 Feb 2023 14:37:41 -0800 Subject: [PATCH] Upgrade to 0.1.0-rc3 --- README.md | 4 ++-- lib/live_component.ex | 4 ++-- lib/mix/tasks/configure_esbuild.ex | 7 ++++--- lib/mix/tasks/configure_phoenix.ex | 7 ++++--- lib/mix/tasks/install_npm_deps.ex | 7 ++++--- lib/mix/tasks/setup.ex | 7 ++++--- mix.exs | 2 +- 7 files changed, 21 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 7e9210e..782ae9c 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Add `live_svelte` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:live_svelte, "~> 0.1.0-rc2"} + {:live_svelte, "~> 0.1.0-rc3"} ] end ``` @@ -82,7 +82,7 @@ def render(assigns) do end ``` -If you component is in a directory, for example `assets/svelte/components/some-directory/SomeComponent.svelte` you need to include the directory in your name: `some-directory/SomeComponent`. +If your component is in a directory, for example `assets/svelte/components/some-directory/SomeComponent.svelte` you need to include the directory in your name: `some-directory/SomeComponent`. ### Examples diff --git a/lib/live_component.ex b/lib/live_component.ex index a8eaed1..815d34e 100644 --- a/lib/live_component.ex +++ b/lib/live_component.ex @@ -3,7 +3,7 @@ defmodule LiveSvelte do ## Examples - LiveView + ### LiveView defmodule App.SvelteLive do use App, :live_view @@ -38,7 +38,7 @@ defmodule LiveSvelte do end end - Svelte Component + ### Svelte Component