File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.4.1 (2022-11-29)
4
+
5
+ * Improvements
6
+ * Support new ` :notify ` configuration for third-party integration to file change events
7
+
3
8
## 1.4.0 (2022-10-29)
4
9
5
10
* Improvements
Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ defmodule Phoenix.LiveReloader do
33
33
* `:patterns` - a list of patterns to trigger the live reloading.
34
34
This option is required to enable any live reloading.
35
35
36
+ * `:notify` - a keyword list of topics pointing to a list of patterns.
37
+ A mesage of the form `{:phoenix_live_reload, topic, path}` will be
38
+ broadcast on the topic whenever file in the list of patterns changes.
39
+
36
40
* `:debounce` - an integer in milliseconds to wait before sending
37
41
live reload events to the browser. Defaults to `0`.
38
42
Original file line number Diff line number Diff line change 1
1
defmodule PhoenixLiveReload.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "1.4.0 "
4
+ @ version "1.4.1 "
5
5
6
6
def project do
7
7
[
You can’t perform that action at this time.
0 commit comments