Skip to content

Commit 61a2731

Browse files
committed
Update dependencies, warnings
1 parent a0a21f8 commit 61a2731

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

Diff for: bower.json

+15-6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,23 @@
1313
"output"
1414
],
1515
"dependencies": {
16-
"purescript-functions": "~1.0.0",
17-
"purescript-arraybuffer-types": "~0.2.0",
18-
"purescript-maybe": "~1.0.0",
19-
"purescript-eff": "1.0.0",
16+
"purescript-functions": "^2.0.0",
17+
"purescript-arraybuffer-types": "^0.2.0",
18+
"purescript-maybe": "^2.0.0",
19+
"purescript-eff": "^2.0.0",
2020
"purescript-uint": "^0.1.0"
2121
},
2222
"devDependencies": {
23-
"purescript-debug": "~1.0.0",
24-
"purescript-quickcheck": "~1.0.0"
23+
"purescript-debug": "^2.0.0",
24+
"purescript-quickcheck": "^3.0.0"
25+
},
26+
"resolutions": {
27+
"purescript-maybe": "^2.0.0",
28+
"purescript-eff": "^2.0.0",
29+
"purescript-monoid": "^2.0.0",
30+
"purescript-prelude": "^2.1.0",
31+
"purescript-console": "^2.0.0",
32+
"purescript-control": "^2.0.0",
33+
"purescript-invariant": "^2.0.0"
2534
}
2635
}

Diff for: test/Main.purs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
module Test.Main where
22

3-
import Prelude ( Unit, negate, bind, ($), (==), (&&), (<$>), pure
4-
, (=<<), (*), (-) )
3+
import Prelude
54
import Data.Maybe (Maybe(..))
6-
import Test.QuickCheck
5+
import Test.QuickCheck (QC, quickCheck')
76
import Control.Monad.Eff (Eff)
87
import Control.Monad.Eff.Console (CONSOLE)
98
import Control.Monad.Eff.Random (RANDOM)

0 commit comments

Comments
 (0)