Skip to content

Commit b920206

Browse files
justinwoosharkdp
authored andcommitted
changes for 0.12
1 parent 5fa5e46 commit b920206

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

bower.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@
1616
"output"
1717
],
1818
"dependencies": {
19-
"purescript-math": "^2.0.0",
20-
"purescript-globals": "^3.0.0",
21-
"purescript-maybe": "^3.0.0"
19+
"purescript-math": "#compiler/0.12",
20+
"purescript-globals": "#compiler/0.12",
21+
"purescript-maybe": "#compiler/0.12"
2222
},
2323
"devDependencies": {
24-
"purescript-console": "^3.0.0",
25-
"purescript-psci-support": "^3.0.0",
26-
"purescript-test-unit": "^11.0.0"
24+
"purescript-console": "#compiler/0.12",
25+
"purescript-test-unit": "justinwoo/purescript-test-unit#compiler/0.12"
2726
}
2827
}

test/Main.purs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,10 @@ import Data.Number.Format (precision, fixed, exponential, toStringWith,
99
import Data.Number.Approximate (Fraction(..), Tolerance(..), eqRelative,
1010
eqAbsolute, (≅), (≇))
1111

12-
import Control.Monad.Aff.AVar (AVAR)
13-
import Control.Monad.Eff (Eff)
14-
import Control.Monad.Eff.Console (CONSOLE)
12+
import Effect (Effect)
1513

1614
import Test.Unit (suite, test)
1715
import Test.Unit.Assert (assert, assertFalse, equal)
18-
import Test.Unit.Console (TESTOUTPUT)
1916
import Test.Unit.Main (runTest)
2017

2118

@@ -31,7 +28,7 @@ eqAbsolute' = eqAbsolute (Tolerance 0.1)
3128

3229
infix 1 eqAbsolute' as =~=
3330

34-
main Eff (console CONSOLE, testOutput TESTOUTPUT, avar AVAR) Unit
31+
main Effect Unit
3532
main = runTest do
3633

3734

0 commit comments

Comments
 (0)