mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 09:28:21 +00:00
Upgrade to 0.1.0-rc4
This commit is contained in:
parent
ad0581f7e3
commit
ebb32b4af6
3 changed files with 6 additions and 4 deletions
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
# LiveSvelte
|
||||
|
||||
Render Svelte directly into Phoenix LiveView with E2E reactivity.
|
||||
|
||||

|
||||
|
||||
[Installation](#installation) •
|
||||
|
|
@ -11,8 +13,6 @@
|
|||
|
||||
<!-- MDOC -->
|
||||
|
||||
Render Svelte directly into Phoenix LiveView with E2E reactivity.
|
||||
|
||||
## Features
|
||||
|
||||
- Server-Side Rendered (SSR) Svelte
|
||||
|
|
@ -48,7 +48,7 @@ Add `live_svelte` to your list of dependencies in `mix.exs`:
|
|||
```elixir
|
||||
def deps do
|
||||
[
|
||||
{:live_svelte, "~> 0.1.0-rc3"}
|
||||
{:live_svelte, "~> 0.1.0-rc4"}
|
||||
]
|
||||
end
|
||||
```
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ defmodule LiveSvelte do
|
|||
|> String.split("<!-- MDOC -->")
|
||||
|> Enum.fetch!(1)
|
||||
|
||||
@moduledoc since: "0.1.0-rc4"
|
||||
|
||||
use Phoenix.LiveComponent
|
||||
import Phoenix.HTML
|
||||
|
||||
|
|
|
|||
2
mix.exs
2
mix.exs
|
|
@ -1,7 +1,7 @@
|
|||
defmodule LiveSvelte.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
@version "0.1.0-rc3"
|
||||
@version "0.1.0-rc4"
|
||||
@repo_url "https://github.com/woutdp/live_svelte"
|
||||
|
||||
def project do
|
||||
|
|
|
|||
Loading…
Reference in a new issue