Skip to content

Commit 697ab96

Browse files
authored
Merge pull request #60 from justinwoo/0.11
update for 0.11
2 parents 411cc2c + f7f3a97 commit 697ab96

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

bower.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"tests"
2222
],
2323
"dependencies": {
24-
"purescript-generics": "^3.1.0",
25-
"purescript-nonempty": "^3.0.0",
26-
"purescript-profunctor": "^2.0.0",
27-
"purescript-strings": "^2.0.2",
28-
"purescript-these": "^2.0.0",
29-
"purescript-transformers": "^2.0.1",
30-
"purescript-colors": "^2.0.0",
31-
"purescript-console": "^2.0.0"
24+
"purescript-generics": "^4.0.0",
25+
"purescript-nonempty": "^4.0.0",
26+
"purescript-profunctor": "^3.0.0",
27+
"purescript-strings": "^3.0.0",
28+
"purescript-these": "^3.0.0",
29+
"purescript-transformers": "^3.2.0",
30+
"purescript-colors": "^3.0.0",
31+
"purescript-console": "^3.0.0"
3232
},
3333
"devDependencies": {
34-
"purescript-exceptions": "^2.0.0"
34+
"purescript-exceptions": "^3.0.0"
3535
}
3636
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"pulp": "^9.0.1",
10-
"purescript-psa": "^0.3.9",
11-
"purescript": "^0.10.1",
12-
"rimraf": "^2.5.0"
9+
"pulp": "^11.0.0",
10+
"purescript-psa": "^0.5.1",
11+
"purescript": "^0.11.4",
12+
"rimraf": "^2.6.1"
1313
}
1414
}

src/CSS/Common.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ browsers = Prefixed
7373

7474
-- | Syntax for CSS function call.
7575

76-
call :: forall s. (IsString s, Monoid s) => s -> s -> s
76+
call :: forall s. IsString s => Monoid s => s -> s -> s
7777
call fn arg = fn <> fromString "(" <> arg <> fromString ")"

test/Main.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ nestedNodesWithEmptyParent = render do
4848
fromString "#parent" ? do
4949
fromString "#child" ? display block
5050

51-
assertEqual :: forall a. (Eq a, Show a) => a -> a -> Eff (err :: EXCEPTION) Unit
51+
assertEqual :: forall a. Eq a => Show a => a -> a -> Eff (exception :: EXCEPTION) Unit
5252
assertEqual x y = unless (x == y) <<< throwException <<< error $ "Assertion failed: " <> show x <> " /= " <> show y
5353

54-
main :: Eff (err :: EXCEPTION) Unit
54+
main :: Eff (exception :: EXCEPTION) Unit
5555
main = do
5656
renderedInline example1 `assertEqual` Just "color: hsl(0.0, 100.0%, 50.0%); display: block"
5757
renderedInline example2 `assertEqual` Just "display: inline-block"

0 commit comments

Comments
 (0)