Skip to content

Commit ca24764

Browse files
committed
purs 0.11 changes
1 parent f596eaa commit ca24764

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
dist: trusty
33
sudo: required
4-
node_js: 6
4+
node_js: stable
55
install:
66
- npm install -g bower
77
- npm install

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
},
1919
"license": "MIT",
2020
"dependencies": {
21-
"purescript-enums": "^2.0.0",
22-
"purescript-functions": "^2.0.0",
23-
"purescript-maps": "^2.0.0"
21+
"purescript-enums": "^3.0.0",
22+
"purescript-functions": "^3.0.0",
23+
"purescript-maps": "^3.0.0"
2424
},
2525
"devDependencies": {
26-
"purescript-strongcheck": "^2.0.0"
26+
"purescript-strongcheck": "^3.0.0"
2727
}
2828
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
},
88
"devDependencies": {
99
"jscs": "^3.0.7",
10-
"jshint": "^2.9.3",
11-
"pulp": "^9.0.1",
12-
"purescript-psa": "^0.3.9",
13-
"purescript": "^0.10.1",
14-
"rimraf": "^2.5.4"
10+
"jshint": "^2.9.4",
11+
"pulp": "^11.0.0",
12+
"purescript-psa": "^0.5.0",
13+
"purescript": "^0.11.2",
14+
"rimraf": "^2.6.1"
1515
}
1616
}

src/Data/Argonaut/Core.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ type JAssoc = Tuple String Json
8080
-- | The type of null values inside JSON data. There is exactly one value of
8181
-- | this type: in JavaScript, it is written `null`. This module exports this
8282
-- | value as `jsonNull`.
83-
foreign import data JNull :: *
83+
foreign import data JNull :: Type
8484

8585
-- | The type of JSON data. The underlying representation is the same as what
8686
-- | would be returned from JavaScript's `JSON.parse` function; that is,
8787
-- | ordinary JavaScript booleans, strings, arrays, objects, etc.
88-
foreign import data Json :: *
88+
foreign import data Json :: Type
8989

9090
-- | Case analysis for `Json` values. See the README for more information.
9191
foldJson

0 commit comments

Comments
 (0)