- Separate tests by library and remove
lwt
dependency frompromise_jsoo
tests.
- Require
lwt
when runningpromise_jsoo
tests.
- Add
promise_jsoo_lwt
library andPromise_lwt
module to convert between JS promises and Lwt promises - Change internal representation to
Ojs.t
and makePromise.t
abstract. - Remove
Promise.void
type (can now be expressed asunit Promise.t
). - Add a
Make
functor to create modules with a custom type representation. - Give the
error
type a publicOjs.t
type representation. - Remove js_of_ocaml-ppx dependency.
- Reduce the size of .js binaries produced by using this library by not linking the ppx toolchain. (#3)
- Fix
Promise.Array.find_map
andPromise.List.find_map
raisingAssert_failure
(#1) - Stop calling the function once
Promise.Array.find_map
andPromise.List.find_map
find a value (#1)
- Add gen_js_api conversion function for
error
type - Fix gen_js_api conversion function for promise type
- Initial release