Skip to content

Commit e4fdb6c

Browse files
committed
Merge pull request #15 from purescript/0.8-updates
Updates for PureScript 0.8
2 parents 1e99a3e + a5ac1a5 commit e4fdb6c

File tree

18 files changed

+63
-335
lines changed

18 files changed

+63
-335
lines changed

.travis.yml

Lines changed: 13 additions & 3 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:
1416
- npm run build
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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ Profunctor typeclass.
1212
bower install purescript-profunctor
1313
```
1414

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

17-
- [Data.Profunctor](docs/Data/Profunctor.md)
18-
- [Data.Profunctor.Choice](docs/Data/Profunctor/Choice.md)
19-
- [Data.Profunctor.Strong](docs/Data/Profunctor/Strong.md)
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-profunctor).

bower.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"name": "purescript-profunctor",
33
"homepage": "https://github.com/purescript/purescript-profunctor",
4-
"keywords": [
5-
"purescript",
6-
"profunctor"
7-
],
84
"description": "Profunctor typeclass for PureScript",
95
"authors": [
106
"Hardy Jones <[email protected]>",
@@ -26,7 +22,7 @@
2622
"package.json"
2723
],
2824
"dependencies": {
29-
"purescript-either": "^0.2.0",
30-
"purescript-tuples": "^0.4.0"
25+
"purescript-either": "^1.0.0-rc.1",
26+
"purescript-tuples": "^1.0.0-rc.1"
3127
}
3228
}

docs/Data/Profunctor.md

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

docs/Data/Profunctor/Choice.md

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

docs/Data/Profunctor/Closed.md

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

docs/Data/Profunctor/Cochoice.md

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

docs/Data/Profunctor/Costrong.md

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

docs/Data/Profunctor/Star.md

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

docs/Data/Profunctor/Strong.md

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

0 commit comments

Comments
 (0)