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

Commit 980ca9c

Browse files
committed
Update dependencies
1 parent 403d0f1 commit 980ca9c

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

bower.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"authors": [
55
"Gershom Bazerman <[email protected]>"
66
],
7-
"version": "0.3.0",
87
"description": "Generic programming",
98
"keywords": [
109
"purescript",
@@ -25,13 +24,11 @@
2524
"url": "git://github.com/purescript/purescript-generics.git"
2625
},
2726
"dependencies": {
28-
"purescript-strings": "~0.6.0",
29-
"purescript-arrays": "~0.4.1",
30-
"purescript-either": "~0.2.0",
31-
"purescript-tuples": "~0.4.0",
32-
"purescript-integers": "~0.2.1"
27+
"purescript-arrays": "^0.4.2",
28+
"purescript-either": "^0.2.1",
29+
"purescript-strings": "^0.7.0"
3330
},
3431
"devDependencies": {
35-
"purescript-console": "~0.1.0"
32+
"purescript-console": "^0.1.0"
3633
}
3734
}

src/Data/Generic.purs

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ module Data.Generic
88
gEq,
99
gCompare
1010
) where
11+
1112
import Prelude
12-
import Data.Either
13-
import Data.Maybe
14-
import qualified Data.String as S
15-
import Data.Tuple
16-
import Data.Traversable
17-
import Data.Array
18-
import Data.Int
19-
import Data.Monoid.Conj
20-
import Data.Foldable
13+
14+
import Data.Either (Either(..))
15+
import Data.Maybe (Maybe(..))
16+
import Data.Tuple (Tuple(..))
17+
import Data.Traversable (traverse)
18+
import Data.Array (null, length)
2119
import Data.String (joinWith)
2220

2321
-- | A GenericSpine is a universal represntation of an arbitrary data structure (that does not contain function arrows).

0 commit comments

Comments
 (0)