diff options
author | Eduardo Julian | 2021-07-19 19:50:14 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-07-19 19:50:14 -0400 |
commit | a1c192d175f13cdb3e69b3ca5985d0d5ecf0fe93 (patch) | |
tree | 29d2cd841283ed1ada5a6d3199ce7617c9514c0f /lux-js/source | |
parent | a40f40f230e6312ae432f06e7f73aa5945d8fa49 (diff) |
Made the default JS file-system promise-based so it works well on Node.
Diffstat (limited to 'lux-js/source')
-rw-r--r-- | lux-js/source/program.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index 295aba2ce..ac43d9dd2 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -574,7 +574,7 @@ (IO (Platform [Register Text] _.Expression _.Statement)) (do io.monad [host ..host] - (wrap {#platform.&file_system (file.async file.default) + (wrap {#platform.&file_system file.default #platform.host host #platform.phase js.generate #platform.runtime runtime.generate |