Skip to content

Commit 2b37b89

Browse files
committed
Updates for PureScript 0.10
1 parent 6efb228 commit 2b37b89

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Diff for: bower.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"test"
1616
],
1717
"dependencies": {
18-
"purescript-strings": "^1.0.0",
19-
"purescript-arrays": "^1.0.0",
18+
"purescript-strings": "^2.0.0",
19+
"purescript-arrays": "^3.0.0",
2020
"purescript-math": "^2.0.0",
21-
"purescript-unfoldable": "^1.0.0",
22-
"purescript-integers": "^1.0.0"
21+
"purescript-unfoldable": "^2.0.0",
22+
"purescript-integers": "^2.0.0"
2323
}
2424
,
2525
"devDependencies": {
26-
"purescript-test-unit": "^7.0.0"
26+
"purescript-test-unit": "^10.0.0"
2727
}
2828
}

Diff for: test/Main.purs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ import Text.Format (width, signed, zeroFill, precision, format)
99

1010
import Control.Monad.Eff (Eff)
1111
import Control.Monad.Eff.Console (CONSOLE)
12+
import Control.Monad.Aff.AVar (AVAR)
1213

1314
import Test.Unit (test)
1415
import Test.Unit.Main (runTest)
1516
import Test.Unit.Console (TESTOUTPUT)
1617
import Test.Unit.Assert (assert, equal)
1718

18-
main :: Eff (console :: CONSOLE, testOutput :: TESTOUTPUT) Unit
19+
main :: Eff (console :: CONSOLE, testOutput :: TESTOUTPUT, avar :: AVAR) Unit
1920
main = runTest do
2021
test "Semigroup instance" do
2122
assert "right option should take precendence" $

0 commit comments

Comments
 (0)