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 17
17
" package.json"
18
18
],
19
19
"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"
23
22
}
24
23
}
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
-- | This module defines an effect, actions and handlers for working
2
2
-- | with JavaScript exceptions.
3
3
4
- module Control.Monad. Effect.Exception
4
+ module Effect.Exception
5
5
( Error
6
6
, error
7
7
, message
@@ -15,7 +15,7 @@ module Control.Monad.Effect.Exception
15
15
16
16
import Prelude
17
17
18
- import Control.Monad. Effect (Effect )
18
+ import Effect (Effect )
19
19
20
20
import Data.Either (Either (..))
21
21
import 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
2
2
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 )
5
5
import Control.Semigroupoid ((<<<))
6
6
7
7
-- | Throw an exception in pure code. This function should be used very
You can’t perform that action at this time.
0 commit comments