Skip to content

Commit b4748b1

Browse files
committed
Update build
1 parent 9a4487a commit b4748b1

File tree

11 files changed

+40
-33
lines changed

11 files changed

+40
-33
lines changed

.bowerrc

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

.gitignore

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
.*
2-
!/.bowerrc
1+
/.*
32
!/.gitignore
4-
/output/
5-
/node_modules/
3+
!/.travis.yml
64
/bower_components/
7-
/tmp/
5+
/node_modules/
6+
/output/

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
sudo: false
3+
node_js:
4+
- 0.10
5+
env:
6+
- PATH=$HOME/purescript:$PATH
7+
install:
8+
- 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')
9+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10+
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11+
- chmod a+x $HOME/purescript
12+
- npm install
13+
script:
14+
- npm run build

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# purescript-lists
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-lists.svg)](https://github.com/purescript/purescript-lists/releases)
34
[![Build Status](https://travis-ci.org/purescript/purescript-lists.svg?branch=master)](https://travis-ci.org/purescript/purescript-lists)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/55848c8a363861001d00033b/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848c8a363861001d00033b)
46

57
This library defines strict and lazy linked lists, and associated helper functions and type class instances.
68

@@ -14,7 +16,7 @@ bower install purescript-lists
1416

1517
## Module documentation
1618

17-
- [Data.List](docs/Data.List.md)
18-
- [Data.List.Lazy](docs/Data.List.Lazy.md)
19-
- [Data.List.Unsafe](docs/Data.List.Unsafe.md)
20-
- [Data.List.ZipList](docs/Data.List.ZipList.md)
19+
- [Data.List](docs/Data/List.md)
20+
- [Data.List.Lazy](docs/Data/List/Lazy.md)
21+
- [Data.List.Unsafe](docs/Data/List/Unsafe.md)
22+
- [Data.List.ZipList](docs/Data/List/ZipList.md)

bower.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
{
22
"name": "purescript-lists",
3+
"homepage": "https://github.com/purescript/purescript-lists",
4+
"authors": [
5+
"Phil Freeman <[email protected]>"
6+
],
37
"description": "Linked lists",
48
"keywords": [
59
"purescript"
610
],
11+
"license": "MIT",
12+
"repository": {
13+
"type": "git",
14+
"url": "git://github.com/purescript/purescript-lists.git"
15+
},
716
"ignore": [
817
"**/.*",
918
"bower_components",
1019
"node_modules",
1120
"output",
12-
"tests",
13-
"js",
14-
"tmp",
21+
"test",
1522
"bower.json",
16-
"Gruntfile.js",
1723
"package.json"
1824
],
1925
"dependencies": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "pulp test && rimraf docs && pulp docs"
6+
},
37
"devDependencies": {
4-
"gulp": "^3.8.11",
5-
"gulp-plumber": "^1.0.0",
6-
"gulp-purescript": "^0.5.0-rc.1",
7-
"gulp-run": "^1.6.8",
8-
"rimraf": "^2.3.3"
8+
"pulp": "^4.0.2",
9+
"rimraf": "^2.4.1"
910
}
1011
}

test-src/Data/List.purs

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

0 commit comments

Comments
 (0)