Skip to content

Commit 1bf8558

Browse files
committed
Merge pull request #2 from menelaos/psc-0.9
Fix class imports for 0.9 and list deps explicitly
2 parents 2d29d5c + 90b68ac commit 1bf8558

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ sudo: false
33
node_js:
44
- 5.5
55
env:
6-
- PSC_VERSION=0.8.0
7-
- PSC_VERSION=0.7.6
6+
- PSC_VERSION=0.9.1
87
install:
98
- npm install purescript@${PSC_VERSION} pulp bower -g
109
- bower update

bower.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@
1111
"output"
1212
],
1313
"dependencies": {
14-
"purescript-globals": "~0.2.2",
15-
"purescript-generics": "~0.7.2"
14+
"purescript-prelude": "^1.0.1",
15+
"purescript-globals": "^1.0.0",
16+
"purescript-generics": "^1.0.0",
17+
"purescript-maybe": "^1.0.0",
18+
"purescript-strings": "^1.0.0",
19+
"purescript-tuples": "^1.0.0"
1620
},
1721
"repository": {
1822
"type": "git",

src/Data/FormURLEncoded.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ module Data.FormURLEncoded
55
, encode
66
) where
77

8-
import Prelude (Show, Ord, Eq, map, (<<<), (<>), compare, eq)
8+
import Prelude (class Show, class Ord, class Eq, map, (<<<), (<>), compare, eq)
99
import Data.String (joinWith) as String
1010
import Data.Maybe (Maybe(..))
1111
import Data.Tuple (Tuple(..))
12-
import Data.Generic (Generic, gShow)
12+
import Data.Generic (class Generic, gShow)
1313

1414
import Global (encodeURIComponent)
1515

0 commit comments

Comments
 (0)