Skip to content
This repository was archived by the owner on Dec 18, 2020. It is now read-only.

Commit 8b2dfdb

Browse files
committed
Bump deps for compiler/0.12
1 parent 52442c3 commit 8b2dfdb

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"package.json"
1818
],
1919
"devDependencies": {
20-
"purescript-assert": "^3.0.0",
21-
"purescript-console": "^3.0.0"
20+
"purescript-assert": "purescript/purescript-assert#compiler/0.12",
21+
"purescript-console": "purescript/purescript-console#compiler/0.12"
2222
}
2323
}

package.json

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

test/Test/Main.purs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ module Test.Main where
22

33
import Prelude
44

5-
import Control.Monad.Eff (Eff)
6-
import Control.Monad.Eff.Console (CONSOLE, log)
5+
import Effect (Effect)
6+
import Effect.Console (log)
77

88
import Global (readFloat, readInt, isFinite, infinity, nan, isNaN)
99
import Global.Unsafe (unsafeToPrecision, unsafeToExponential, unsafeToFixed)
1010

11-
import Test.Assert (ASSERT, assert)
11+
import Test.Assert (assert)
1212

13-
main :: Eff (console :: CONSOLE, assert :: ASSERT) Unit
13+
main :: Effect Unit
1414
main = do
1515
let num = 12345.6789
1616

0 commit comments

Comments
 (0)