Skip to content

Commit ce99b19

Browse files
authored
Merge pull request #13 from purescript-node/compiler/0.12
Compiler/0.12
2 parents 73fb16d + 46f521b commit ce99b19

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"package.json"
2121
],
2222
"devDependencies": {
23-
"purescript-assert": "^3.0.0",
24-
"purescript-console": "^3.0.0"
23+
"purescript-assert": "^4.0.0",
24+
"purescript-console": "^4.1.0"
2525
}
2626
}

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
},
88
"devDependencies": {
99
"jscs": "^3.0.7",
10-
"jshint": "^2.9.4",
11-
"pulp": "^11.0.0",
12-
"purescript-psa": "^0.5.0",
13-
"rimraf": "^2.6.1"
10+
"jshint": "^2.9.5",
11+
"pulp": "^12.2.0",
12+
"purescript-psa": "^0.6.0",
13+
"rimraf": "^2.6.2"
1414
}
1515
}

test/Test/Main.purs

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

33
import Prelude
4-
import Control.Monad.Eff (Eff)
4+
import Effect (Effect)
55
import Node.Path (parse, delimiter, normalize, sep, extname, basenameWithoutExt, basename, dirname, relative, concat)
6-
import Test.Assert (ASSERT, assert)
6+
import Test.Assert (assert)
77

8-
main :: forall eff. Eff ( assert :: ASSERT | eff ) Unit
8+
main :: Effect Unit
99
main = do
1010
assert $ normalize "/foo/bar//baz/asdf/quux/.." == normalize "/foo/bar/baz/asdf"
1111
assert $ concat ["/foo", "bar"] == normalize "/foo/bar"

0 commit comments

Comments
 (0)