This repository has been archived by the owner on Jan 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from garyb/updates
Update aff & build
- Loading branch information
Showing
6 changed files
with
33 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |