File tree Expand file tree Collapse file tree 14 files changed +165
-381
lines changed Expand file tree Collapse file tree 14 files changed +165
-381
lines changed Original file line number Diff line number Diff line change 44/bower_components /
55/node_modules /
66/output /
7- /tmp /
Original file line number Diff line number Diff line change 11language : node_js
2- sudo : false
3- node_js :
4- - 0.10
2+ sudo : required
3+ dist : trusty
4+ node_js : 5
55env :
66 - PATH=$HOME/purescript:$PATH
77install :
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
1315script :
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}"
Original file line number Diff line number Diff line change 44[ ![ Build Status] ( https://travis-ci.org/purescript/purescript-maybe.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-maybe )
55[ ![ Dependency Status] ( https://www.versioneye.com/user/projects/55848c22363861001d000326/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/55848c22363861001d000326 )
66
7- Optional values.
7+ Optional values. ` Maybe ` is often used to capture failures and in cases where nullable values might otherwise have been used in other languages.
88
99## Installation
1010
1111```
1212bower install purescript-maybe
1313```
1414
15- ## Module documentation
15+ ## Documentation
1616
17- - [ Data.Maybe] ( docs/Data/Maybe.md )
18- - [ Data.Maybe.Unsafe] ( docs/Data/Maybe/Unsafe.md )
19-
20- ### Maybe monoids
21-
22- - [ Data.Maybe.First] ( docs/Data/Maybe/First.md )
23- - [ Data.Maybe.Last] ( docs/Data/Maybe/Last.md )
17+ Module documentation is [ published on Pursuit] ( http://pursuit.purescript.org/packages/purescript-maybe ) .
Original file line number Diff line number Diff line change 22 "name" : " purescript-maybe" ,
33 "homepage" : " https://github.com/purescript/purescript-maybe" ,
44 "description" : " Optional values" ,
5- "keywords" : [
6- " purescript"
7- ],
85 "license" : " MIT" ,
96 "repository" : {
107 "type" : " git" ,
1714 " output" ,
1815 " test" ,
1916 " bower.json" ,
20- " gulpfile.js" ,
2117 " package.json"
2218 ],
2319 "dependencies" : {
24- "purescript-monoid" : " ^0.3.0 "
20+ "purescript-monoid" : " ^1.0.0-rc.1 "
2521 }
2622}
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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.1 " ,
9- "rimraf" : " ^2.4.1 "
8+ "pulp" : " ^8.1.0 " ,
9+ "rimraf" : " ^2.5.0 "
1010 }
1111}
You can’t perform that action at this time.
0 commit comments