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

Commit 8460f3d

Browse files
committed
Merge pull request #61 from purescript/0.8-updates
Updates for PureScript 0.8
2 parents c0820c5 + 33f5f26 commit 8460f3d

20 files changed

+245
-801
lines changed

.jscsrc

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"preset": "grunt",
3+
"disallowSpacesInFunctionExpression": null,
4+
"requireSpacesInFunctionExpression": {
5+
"beforeOpeningRoundBrace": true,
6+
"beforeOpeningCurlyBrace": true
7+
},
38
"disallowSpacesInAnonymousFunctionExpression": null,
49
"requireSpacesInAnonymousFunctionExpression": {
510
"beforeOpeningRoundBrace": true,

.jshintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
"singleGroups": true,
1616
"undef": true,
1717
"unused": true,
18-
"eqnull": true
18+
"eqnull": true,
19+
"predef": ["exports"]
1920
}

.travis.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
2-
sudo: false
2+
sudo: required
3+
dist: trusty
34
node_js: 5
45
env:
56
- PATH=$HOME/purescript:$PATH
@@ -8,6 +9,16 @@ install:
89
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
910
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1011
- chmod a+x $HOME/purescript
12+
- npm install -g bower
1113
- npm install
14+
- bower install
1215
script:
13-
- npm run build
16+
- npm test
17+
after_success:
18+
- >-
19+
test $TRAVIS_TAG &&
20+
psc-publish > .pursuit.json &&
21+
curl -X POST http://pursuit.purescript.org/packages \
22+
-d @.pursuit.json \
23+
-H 'Accept: application/json' \
24+
-H "Authorization: token ${GITHUB_TOKEN}"

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ Purely-functional map data structures.
1212
bower install purescript-maps
1313
```
1414

15-
## Module documentation
15+
## Documentation
1616

17-
- [Data.Map](docs/Data/Map.md)
18-
- [Data.StrMap](docs/Data/StrMap.md)
19-
- [Data.StrMap.ST](docs/Data/StrMap/ST.md)
20-
- [Data.StrMap.ST.Unsafe](docs/Data/StrMap/ST/Unsafe.md)
21-
- [Data.StrMap.Unsafe](docs/Data/StrMap/Unsafe.md)
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-maps).

bower.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
"John A. De Goes <[email protected]>"
77
],
88
"description": "Purely functional maps implemented in PureScript",
9-
"keywords": [
10-
"purescript"
11-
],
129
"repository": {
1310
"type": "git",
1411
"url": "git://github.com/purescript/purescript-maps.git"
@@ -24,11 +21,11 @@
2421
"package.json"
2522
],
2623
"dependencies": {
27-
"purescript-lists": "^0.7.0",
28-
"purescript-st": "^0.1.0",
29-
"purescript-functions": "^0.1.0"
24+
"purescript-functions": "^1.0.0-rc.1",
25+
"purescript-lists": "^1.0.0-rc.1",
26+
"purescript-st": "^1.0.0-rc.1"
3027
},
3128
"devDependencies": {
32-
"purescript-quickcheck": "^0.12.0"
29+
"purescript-quickcheck": "^1.0.0-rc.1"
3330
}
3431
}

docs/Data/Map.md

-209
This file was deleted.

0 commit comments

Comments
 (0)