Skip to content

0.12 changes #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
"package.json"
],
"dependencies": {
"purescript-either": "^3.0.0",
"purescript-maybe": "^3.0.0",
"purescript-effect": "^0.1.0"
"purescript-either": "purescript/purescript-either#compiler/0.12",
"purescript-effect": "purescript/purescript-effect#compiler/0.12"
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- | This module defines an effect, actions and handlers for working
-- | with JavaScript exceptions.

module Control.Monad.Effect.Exception
module Effect.Exception
( Error
, error
, message
Expand All @@ -15,7 +15,7 @@ module Control.Monad.Effect.Exception

import Prelude

import Control.Monad.Effect (Effect)
import Effect (Effect)

import Data.Either (Either(..))
import Data.Maybe (Maybe(..))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Control.Monad.Effect.Exception.Unsafe where
module Effect.Exception.Unsafe where

import Control.Monad.Effect.Exception (Error, error, throwException)
import Control.Monad.Effect.Unsafe (unsafePerformEffect)
import Effect.Exception (Error, error, throwException)
import Effect.Unsafe (unsafePerformEffect)
import Control.Semigroupoid ((<<<))

-- | Throw an exception in pure code. This function should be used very
Expand Down