Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
language: node_js
sudo: false
node_js:
- 4
sudo: required
dist: trusty
node_js: 5
env:
- PATH=$HOME/purescript:$PATH
install:
- 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')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
- bower install
script:
- npm run build
after_success:
- >-
test $TRAVIS_TAG &&
psc-publish > .pursuit.json &&
curl -X POST http://pursuit.purescript.org/packages \
-d @.pursuit.json \
-H 'Accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}"
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ Some of this code is derived from GHC's standard libraries (`base`);
according to its terms, we have included GHC's license in the file
`LICENSE-GHC.md`.

## Module documentation
## Documentation

- [Data.List](docs/Data/List.md)
- [Data.List.Lazy](docs/Data/List/Lazy.md)
- [Data.List.Unsafe](docs/Data/List/Unsafe.md)
- [Data.List.ZipList](docs/Data/List/ZipList.md)
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-lists).
13 changes: 5 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
"Phil Freeman <paf31@cantab.net>"
],
"description": "Linked lists",
"keywords": [
"purescript"
],
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -23,12 +20,12 @@
"package.json"
],
"dependencies": {
"purescript-foldable-traversable": "^0.4.0",
"purescript-lazy": "^0.4.0",
"purescript-unfoldable": "^0.4.0"
"purescript-foldable-traversable": "^1.0.0-rc.1",
"purescript-lazy": "^1.0.0-rc.1",
"purescript-unfoldable": "^1.0.0-rc.1"
},
"devDependencies": {
"purescript-assert": "^0.1.0",
"purescript-console": "^0.1.0"
"purescript-assert": "^1.0.0-rc.1",
"purescript-console": "^1.0.0-rc.1"
}
}
Loading