File tree Expand file tree Collapse file tree 11 files changed +40
-33
lines changed Expand file tree Collapse file tree 11 files changed +40
-33
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- . *
2
- ! /.bowerrc
1
+ /. *
3
2
! /.gitignore
4
- /output /
5
- /node_modules /
3
+ ! /.travis.yml
6
4
/bower_components /
7
- /tmp /
5
+ /node_modules /
6
+ /output /
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# purescript-lists
2
2
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-lists.svg )] ( https://github.com/purescript/purescript-lists/releases )
3
4
[ ![ 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 )
4
6
5
7
This library defines strict and lazy linked lists, and associated helper functions and type class instances.
6
8
@@ -14,7 +16,7 @@ bower install purescript-lists
14
16
15
17
## Module documentation
16
18
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 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-lists" ,
3
+ "homepage" : " https://github.com/purescript/purescript-lists" ,
4
+ "authors" : [
5
+ " Phil Freeman <[email protected] >"
6
+ ],
3
7
"description" : " Linked lists" ,
4
8
"keywords" : [
5
9
" purescript"
6
10
],
11
+ "license" : " MIT" ,
12
+ "repository" : {
13
+ "type" : " git" ,
14
+ "url" : " git://github.com/purescript/purescript-lists.git"
15
+ },
7
16
"ignore" : [
8
17
" **/.*" ,
9
18
" bower_components" ,
10
19
" node_modules" ,
11
20
" output" ,
12
- " tests" ,
13
- " js" ,
14
- " tmp" ,
21
+ " test" ,
15
22
" bower.json" ,
16
- " Gruntfile.js" ,
17
23
" package.json"
18
24
],
19
25
"dependencies" : {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
+ "scripts" : {
4
+ "postinstall" : " pulp dep install" ,
5
+ "build" : " pulp test && rimraf docs && pulp docs"
6
+ },
3
7
"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"
9
10
}
10
11
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments