Skip to content
This repository was archived by the owner on May 24, 2018. It is now read-only.

Commit 165066b

Browse files
committed
Merge pull request #1 from purescript/0.8-updates
Updates for PureScript 0.8
2 parents 64de8ed + 04c7abb commit 165066b

File tree

9 files changed

+34
-520
lines changed

9 files changed

+34
-520
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
/bower_components/
55
/node_modules/
66
/output/
7-
/tmp/

.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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# purescript-coproducts
1+
# purescript-functor-coproducts
22

3-
[![Latest release](http://img.shields.io/bower/v/purescript-coproducts.svg)](https://github.com/purescript/purescript-coproducts/releases)
4-
[![Build Status](https://travis-ci.org/purescript/purescript-coproducts.svg?branch=master)](https://travis-ci.org/purescript/purescript-coproducts)
5-
[![Dependency Status](https://www.versioneye.com/user/projects/55848c86363861001b00019d/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848c86363861001b00019d)
3+
[![Latest release](http://img.shields.io/bower/v/purescript-functor-coproducts.svg)](https://github.com/purescript/purescript-functor-coproducts/releases)
4+
[![Build Status](https://travis-ci.org/purescript/purescript-functor-coproducts.svg?branch=master)](https://travis-ci.org/purescript/purescript-functor-coproducts)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/56f5381635630e0029db06e6/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56f5381635630e0029db06e6)
66

77
Functor coproducts.
88

99
## Installation
1010

1111
```
12-
bower install purescript-coproducts
12+
bower install purescript-functor-coproducts
1313
```
1414

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

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

bower.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
22
"name": "purescript-coproducts",
3-
"homepage": "https://github.com/purescript/purescript-coproducts",
3+
"homepage": "https://github.com/purescript/purescript-functor-coproducts",
44
"description": "Functor coproducts",
5-
"keywords": [
6-
"purescript"
7-
],
85
"license": "MIT",
96
"repository": {
107
"type": "git",
11-
"url": "git://github.com/purescript/purescript-coproducts.git"
8+
"url": "git://github.com/purescript/purescript-functor-coproducts.git"
129
},
1310
"ignore": [
1411
"**/.*",
@@ -17,10 +14,9 @@
1714
"output",
1815
"test",
1916
"bower.json",
20-
"gulpfile.js",
2117
"package.json"
2218
],
2319
"dependencies": {
24-
"purescript-either": "^0.2.0"
20+
"purescript-either": "^1.0.0-rc.1"
2521
}
2622
}

docs/Data/Functor/Coproduct.md

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

0 commit comments

Comments
 (0)