Skip to content
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from garyb/updates
Browse files Browse the repository at this point in the history
Update aff & build
  • Loading branch information
garyb committed Mar 14, 2016
2 parents 364a5cd + b67de3c commit 09d2b47
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 44 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.*
!.gitignore
!.travis.yml
/.*
!/.gitignore
!/.travis.yml
/bower_components/
/node_modules/
/output/
/src/.webpack.js
18 changes: 14 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
language: node_js
sudo: false
node_js:
- 0.12.7
dist: trusty
sudo: required
node_js: 5
install:
- npm install
- npm install -g bower
- bower install
script:
- npm run build
- npm test
after_success:
- >-
test $TRAVIS_TAG &&
node_modules/.bin/psc-publish > .pursuit.json &&
curl -X POST http://pursuit.purescript.org/packages \
-d @.pursuit.json \
-H 'Accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}"
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# purescript-aff-reattempt

A PureScript library for reattempting asynchronous computations.

### Module documentation
[![Latest release](http://img.shields.io/bower/v/purescript-aff-reattempt.svg)](https://github.com/slamdata/purescript-aff-reattempt/releases)
[![Build Status](https://travis-ci.org/slamdata/purescript-aff-reattempt.svg?branch=master)](https://travis-ci.org/slamdata/purescript-aff-reattempt)
[![Dependency Status](https://www.versioneye.com/user/projects/56e6d48d96f80c002c8ceb4f/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56e6d48d96f80c002c8ceb4f)

* [Control.Monad.Aff.Reattempt](docs/Control/Monad/Aff/Reattempt.md)

### Installation
A PureScript library for reattempting asynchronous computations.

Please install [Bower](https://github.com/bower/bower) and run `bower install
purescript-aff-reattempt`.
## Installation

### Tests
``` purescript
bower install purescript-aff-reattempt
```

Please install [Pulp](https://github.com/bodil/pulp) and run `pulp test`.
## Documentation

Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-aff-reattempt).
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"bower.json"
],
"dependencies": {
"purescript-aff": "^0.13.0",
"purescript-aff": "^0.16.0",
"purescript-refs": "^0.2.0"
},
"devDependencies": {
Expand Down
20 changes: 0 additions & 20 deletions docs/Control/Monad/Aff/Reattempt.md

This file was deleted.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"private": true,
"scripts": {
"postinstall": "pulp dep install",
"build": "pulp test && rimraf docs && pulp docs"
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build"
},
"devDependencies": {
"pulp": "^4.4.0",
"purescript": "^0.7.4",
"rimraf": "^2.4.3"
"pulp": "^8.1.0",
"purescript": "^0.7.6",
"rimraf": "^2.5.2"
}
}

0 comments on commit 09d2b47

Please sign in to comment.