Skip to content

Commit 46a65db

Browse files
committed
Bump deps for compiler/0.12
1 parent daae61d commit 46a65db

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-prelude": "^3.0.0"
20+
"purescript-prelude": "purescript/purescript-prelude#compiler/0.12"
2121
},
2222
"devDependencies": {
23-
"purescript-eff": "^3.1.0"
23+
"purescript-effect": "purescript/purescript-effect#compiler/0.12"
2424
}
2525
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
55
"build": "pulp build -- --censor-lib --strict",
6-
"test": "pulp test"
6+
"test": "pulp test --check-main-type Effect.Effect"
77
},
88
"devDependencies": {
99
"pulp": "^12.0.1",
10-
"purescript-psa": "^0.5.0-rc.1",
11-
"rimraf": "^2.6.1"
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1212
}
1313
}

src/Control/Extend.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Control.Extend
66
, module Data.Functor
77
) where
88

9-
import Control.Category (id)
9+
import Control.Category (identity)
1010

1111
import Data.Functor (class Functor, map, void, ($>), (<#>), (<$), (<$>))
1212
import Data.Semigroup (class Semigroup, (<>))
@@ -56,4 +56,4 @@ infixr 1 composeCoKleisliFlipped as =<=
5656
-- |
5757
-- | `duplicate` is dual to `Control.Bind.join`.
5858
duplicate :: forall a w. Extend w => w a -> w (w a)
59-
duplicate = extend id
59+
duplicate = extend identity

test/Test/Control/Lazy.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module Test.Control.Lazy (testLazy) where
22

33
import Control.Applicative (pure)
4-
import Control.Monad.Eff (Eff)
54
import Control.Lazy (fix)
65
import Data.Unit (Unit, unit)
6+
import Effect (Effect)
77

88
foo :: forall a. a -> Unit
99
foo _ = unit
@@ -15,5 +15,5 @@ foo' :: forall a. a -> Unit
1515
foo' = fix foofoo
1616

1717
-- the idea here is that foo and foo' are the same function
18-
testLazy :: Eff () Unit
18+
testLazy :: Effect Unit
1919
testLazy = pure (foo' unit)

test/Test/Main.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module Test.Main (main) where
22

3-
import Control.Monad.Eff (Eff)
3+
import Effect (Effect)
44
import Data.Unit (Unit)
55

66
import Test.Control.Lazy (testLazy)
77

8-
main :: Eff () Unit
8+
main :: Effect Unit
99
main = testLazy

0 commit comments

Comments
 (0)