aboutsummaryrefslogtreecommitdiff
path: root/src/lustre.gleam
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2022-05-14 06:55:29 +0100
committerHayleigh Thompson <me@hayleigh.dev>2022-05-14 06:55:29 +0100
commit377ce9404ed3fb1fabffa9d049b79fde0689de23 (patch)
treed6eb73472c9c5ae1acfa8a3322711aa25ef32a5d /src/lustre.gleam
parentad61d317f5c7482418902904fd70f0e2fd38afd6 (diff)
downloadlustre-377ce9404ed3fb1fabffa9d049b79fde0689de23.tar.gz
lustre-377ce9404ed3fb1fabffa9d049b79fde0689de23.zip
:bug: Fixed bug where FFI module was overwriting gleam module of the same name.
Diffstat (limited to 'src/lustre.gleam')
-rw-r--r--src/lustre.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lustre.gleam b/src/lustre.gleam
index adba034..cfcf3da 100644
--- a/src/lustre.gleam
+++ b/src/lustre.gleam
@@ -80,4 +80,4 @@ pub fn start (program: Program(state, action), selector: String) -> Result(Nil,
external fn mount (program: Program(state, action), selector: String) -> Result(Nil, Nil)
- = "./lustre/ffi.mjs" "mount"
+ = "./ffi.mjs" "mount"