diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2022-05-14 06:55:29 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2022-05-14 06:55:29 +0100 |
commit | 377ce9404ed3fb1fabffa9d049b79fde0689de23 (patch) | |
tree | d6eb73472c9c5ae1acfa8a3322711aa25ef32a5d /src/lustre.gleam | |
parent | ad61d317f5c7482418902904fd70f0e2fd38afd6 (diff) | |
download | lustre-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.gleam | 2 |
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" |