This PR updates the library to work with purescript-aff version 4. The only change required seems to be in a call to makeAff which now takes a single callback combining what was previously done in two, also the result of the Eff computation is now supposed to be a Canceler (https://pursuit.purescript.org/packages/purescript-aff/4.0.0/docs/Control.Monad.Aff#t:Canceler) -- I have used nonCanceler (does nothing) as I did not find anything that could be done at that point.
This PR updates the library to work with purescript-aff version 4. The only change required seems to be in a call to
makeAff
which now takes a single callback combining what was previously done in two, also the result of theEff
computation is now supposed to be aCanceler
(https://pursuit.purescript.org/packages/purescript-aff/4.0.0/docs/Control.Monad.Aff#t:Canceler) -- I have usednonCanceler
(does nothing) as I did not find anything that could be done at that point.