Skip to content

Commit 09adc05

Browse files
committed
update dependencies
1 parent 581ffcf commit 09adc05

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

MODULE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
### Types
5151

5252
newtype Yoneda f a where
53-
Yoneda :: forall b. (a -> b) -> f b -> Yoneda f a
53+
Yoneda :: (forall b. (a -> b) -> f b) -> Yoneda f a
5454

5555

5656
### Type Class Instances
@@ -126,7 +126,7 @@
126126
data Free f a where
127127
Pure :: a -> Free f a
128128
Free :: f (Free f a) -> Free f a
129-
Gosub :: forall s. (forall r. (Unit -> Free f r) -> (r -> Free f a) -> s) -> s -> Free f a
129+
Gosub :: (forall s. (forall r. (Unit -> Free f r) -> (r -> Free f a) -> s) -> s) -> Free f a
130130

131131
type FreeC f a = Free (Coyoneda f) a
132132

bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
],
1414
"dependencies": {
1515
"purescript-control": "~0.2.1",
16-
"purescript-either": "~0.1.3",
17-
"purescript-exists": "*",
18-
"purescript-transformers": "~0.2.1",
19-
"purescript-lazy": "~0.1.0",
20-
"purescript-foldable-traversable": "~0.1.3"
16+
"purescript-either": "~0.1.4",
17+
"purescript-exists": "~0.1.0",
18+
"purescript-transformers": "~0.3.0",
19+
"purescript-lazy": "~0.1.1",
20+
"purescript-foldable-traversable": "~0.1.4"
2121
}
2222
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "purescript-free",
33
"private": true,
44
"devDependencies": {
5-
"gulp": "3.8.7",
5+
"gulp": "3.8.10",
66
"gulp-clean": "0.2.4",
77
"gulp-util": "2.2.14",
88
"gulp-plumber": "0.5.6",

0 commit comments

Comments
 (0)