File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1717 " package.json"
1818 ],
1919 "dependencies" : {
20- "purescript-either" : " ^3.0.0" ,
21- "purescript-maybe" : " ^3.0.0" ,
22- "purescript-effect" : " ^0.1.0"
20+ "purescript-either" : " purescript/purescript-either#compiler/0.12" ,
21+ "purescript-effect" : " purescript/purescript-effect#compiler/0.12"
2322 }
2423}
File renamed without changes.
Original file line number Diff line number Diff line change 11-- | This module defines an effect, actions and handlers for working
22-- | with JavaScript exceptions.
33
4- module Control.Monad. Effect.Exception
4+ module Effect.Exception
55 ( Error
66 , error
77 , message
@@ -15,7 +15,7 @@ module Control.Monad.Effect.Exception
1515
1616import Prelude
1717
18- import Control.Monad. Effect (Effect )
18+ import Effect (Effect )
1919
2020import Data.Either (Either (..))
2121import Data.Maybe (Maybe (..))
Original file line number Diff line number Diff line change 1- module Control.Monad. Effect.Exception.Unsafe where
1+ module Effect.Exception.Unsafe where
22
3- import Control.Monad. Effect.Exception (Error , error , throwException )
4- import Control.Monad. Effect.Unsafe (unsafePerformEffect )
3+ import Effect.Exception (Error , error , throwException )
4+ import Effect.Unsafe (unsafePerformEffect )
55import Control.Semigroupoid ((<<<))
66
77-- | Throw an exception in pure code. This function should be used very
You can’t perform that action at this time.
0 commit comments