File tree Expand file tree Collapse file tree 10 files changed +52
-38
lines changed Expand file tree Collapse file tree 10 files changed +52
-38
lines changed Original file line number Diff line number Diff line change
1
+ /. *
2
+ ! /.gitignore
3
+ ! /.travis.yml
1
4
/bower_components /
2
5
/node_modules /
3
- /.pulp-cache /
4
6
/output /
5
- /.psci *
6
- /src /.webpack.js
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
dist : trusty
3
3
sudo : required
4
- node_js :
5
- - 5
4
+ node_js : 6
6
5
install :
7
- - npm install pulp bower -g
8
- - npm install && bower install
6
+ - npm install -g bower
7
+ - npm install
8
+ - bower install
9
9
script :
10
- - pulp test
11
-
10
+ - npm run -s build
12
11
after_success :
13
- - >-
14
- test $TRAVIS_TAG &&
15
- psc-publish > .pursuit.json &&
16
- curl -X POST http://pursuit.purescript.org/packages \
17
- -d @.pursuit.json \
18
- -H 'Accept: application/json' \
19
- -H "Authorization: token ${GITHUB_TOKEN}"
12
+ - >-
13
+ test $TRAVIS_TAG &&
14
+ echo $GITHUB_TOKEN | pulp login &&
15
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change
1
+ # purescript-fixed-points
2
+
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-fixed-points.svg )] ( https://github.com/purescript/purescript-fixed-points/releases )
4
+ [ ![ Build Status] ( https://travis-ci.org/purescript/purescript-fixed-points.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-fixed-points )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/578d3dce3e6a8b0030c9b38a/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/578d3dce3e6a8b0030c9b38a )
6
+
7
+ Types for the least (` Mu ` ) and greatest (` Nu ` ) fixed points of functors.
8
+
9
+ ## Installation
10
+
11
+ ```
12
+ bower install purescript-fixed-points
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ Module documentation is [ published on Pursuit] ( http://pursuit.purescript.org/packages/purescript-fixed-points ) .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-fixed-points" ,
3
- "version" : " 0.2.0" ,
4
3
"license" : " Apache-2.0" ,
5
4
"authors" : [
6
5
" Jon Sterling <jon@jonmsterling.com>"
7
6
],
8
- "moduleType" : [
9
- " node"
10
- ],
7
+ "repository" : {
8
+ "type" : " git" ,
9
+ "url" : " git://github.com/slamdata/purescript-fixed-points.git"
10
+ },
11
11
"ignore" : [
12
12
" **/.*" ,
13
- " node_modules" ,
14
13
" bower_components" ,
15
- " output"
14
+ " node_modules" ,
15
+ " output" ,
16
+ " test" ,
17
+ " bower.json" ,
18
+ " package.json"
16
19
],
17
20
"dependencies" : {
18
- "purescript-console " : " ^0.1 .0" ,
19
- "purescript-exists " : " ^0.2 .0"
21
+ "purescript-exists " : " ^1.0 .0" ,
22
+ "purescript-prelude " : " ^1.0 .0"
20
23
}
21
24
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
+ "scripts" : {
4
+ "clean" : " rimraf output && rimraf .pulp-cache" ,
5
+ "build" : " pulp build --censor-lib --strict"
6
+ },
3
7
"devDependencies" : {
4
- "purescript" : " ^0.8.2"
8
+ "pulp" : " ^9.0.1" ,
9
+ "purescript" : " ^0.9.1" ,
10
+ "purescript-psa" : " ^0.3.9" ,
11
+ "rimraf" : " ^2.5.0"
5
12
}
6
13
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ module Data.Eq1 where
3
3
import Prelude
4
4
5
5
class Eq1 f where
6
- eq1 :: forall a . ( Eq a ) => f a -> f a -> Boolean
6
+ eq1 :: forall a . Eq a => f a -> f a -> Boolean
Original file line number Diff line number Diff line change 1
1
module Data.Functor.Nu
2
- ( Nu ()
2
+ ( Nu
3
3
, unfold
4
4
, observe
5
5
) where
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ module Data.Ord1 where
3
3
import Prelude
4
4
5
5
class Ord1 f where
6
- compare1 :: forall a . ( Ord a ) => f a -> f a -> Ordering
6
+ compare1 :: forall a . Ord a => f a -> f a -> Ordering
Original file line number Diff line number Diff line change 1
1
module Data.TacitString
2
- ( TacitString ()
2
+ ( TacitString
3
3
, hush
4
4
) where
5
5
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments