Skip to content

Commit 69e53f5

Browse files
LiamGoodacregaryb
authored andcommitted
General updates
Removed docs and doc generation in favour of pursuit link in README. Updated version of pulp. Fixed most of the warnings (class imports, sections, operator aliases, etc). Updated travis script
1 parent 8d8a553 commit 69e53f5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+198
-1665
lines changed

.travis.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
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}"
25+

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@
66

77
Pure profunctor lenses.
88

9-
- [Module Documentation](docs/Data/Lens.md)
10-
- [Example](test/Main.purs)
9+
## Installation
1110

12-
## Usage
11+
```
12+
bower install purescript-profunctor-lenses
13+
```
14+
15+
## Documentation
16+
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-profunctor-lenses).
18+
19+
You can find an example usage [here](test/Main.purs).
1320

14-
bower install purescript-profunctor-lenses

docs/Data/Lens.md

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

docs/Data/Lens/At.md

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

docs/Data/Lens/Common.md

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

docs/Data/Lens/Fold.md

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

0 commit comments

Comments
 (0)