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

Commit 9ebbb80

Browse files
committed
Updates for PureScript 0.8
1 parent 8de089e commit 9ebbb80

File tree

7 files changed

+90
-239
lines changed

7 files changed

+90
-239
lines changed

.travis.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
language: node_js
2-
sudo: false
3-
node_js:
4-
- 0.10
2+
sudo: required
3+
dist: trusty
4+
node_js: 5
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
88
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
99
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1010
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1111
- chmod a+x $HOME/purescript
12+
- npm install -g bower
1213
- npm install
14+
- bower install
1315
script:
14-
- 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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Purely-functional set data structure
1212
bower install purescript-sets
1313
```
1414

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

17-
- [Data.Set](docs/Data/Set.md)
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-sets).

bower.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
"authors": [
55
"Phil Freeman <[email protected]>"
66
],
7-
"keywords": [
8-
"purescript"
9-
],
107
"license": "MIT",
118
"repository": {
129
"type": "git",
@@ -22,11 +19,11 @@
2219
"package.json"
2320
],
2421
"dependencies": {
25-
"purescript-maps": "^0.5.0",
26-
"purescript-tailrec": "^0.3.1"
22+
"purescript-maps": "^1.0.0-rc.1",
23+
"purescript-tailrec": "^1.0.0-rc.1"
2724
},
2825
"devDependencies": {
29-
"purescript-assert": "~0.1.1",
30-
"purescript-console": "~0.1.1"
26+
"purescript-assert": "^1.0.0-rc.1",
27+
"purescript-console": "^1.0.0-rc.1"
3128
}
3229
}

docs/Data/Set.md

Lines changed: 0 additions & 168 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"private": true,
33
"scripts": {
4-
"postinstall": "pulp dep install",
5-
"build": "pulp build && pulp test && rimraf docs && pulp docs"
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build",
6+
"test": "pulp test"
67
},
78
"devDependencies": {
8-
"pulp": "^4.0.2",
9-
"rimraf": "^2.4.1"
9+
"pulp": "^8.1.0",
10+
"rimraf": "^2.5.0"
1011
}
1112
}

0 commit comments

Comments
 (0)