Skip to content

Commit b0b7058

Browse files
committed
Merge pull request #14 from purescript/0.8-updates
Updates for PureScript 0.8
2 parents 51f7c06 + 9189e7c commit b0b7058

File tree

7 files changed

+182
-331
lines changed

7 files changed

+182
-331
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
.psci
1+
/.*
2+
!/.gitignore
3+
!/.travis.yml
24
/bower_components/
35
/node_modules/
46
/output/
5-
/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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
[![Build Status](https://travis-ci.org/purescript/purescript-enums.svg?branch=master)](https://travis-ci.org/purescript/purescript-enums)
55
[![Dependency Status](https://www.versioneye.com/user/projects/55848c63363861001d000330/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848c63363861001d000330)
66

7-
Operations for small ordered sum types.
7+
Operations for sequentially ordered types.
88

99
## Installation
1010

1111
```
1212
bower install purescript-enums
1313
```
1414

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

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

bower.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"name": "purescript-enums",
33
"homepage": "https://github.com/purescript/purescript-enums",
44
"description": "Operations for sequentially ordered types",
5-
"keywords": [
6-
"purescript"
7-
],
85
"license": "MIT",
96
"repository": {
107
"type": "git",
@@ -21,8 +18,8 @@
2118
"package.json"
2219
],
2320
"dependencies": {
24-
"purescript-either": "^0.2.0",
25-
"purescript-strings": "^0.7.0",
26-
"purescript-unfoldable": "^0.4.0"
21+
"purescript-either": "^1.0.0-rc.1",
22+
"purescript-strings": "^1.0.0-rc.1",
23+
"purescript-unfoldable": "^1.0.0-rc.1"
2724
}
2825
}

docs/Data/Enum.md

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"private": true,
33
"scripts": {
4-
"postinstall": "pulp dep install",
5-
"build": "pulp build && rimraf docs && pulp docs"
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build"
66
},
77
"devDependencies": {
8-
"pulp": "^4.0.2",
9-
"rimraf": "^2.4.1"
8+
"pulp": "^8.1.0",
9+
"rimraf": "^2.5.0"
1010
}
1111
}

0 commit comments

Comments
 (0)