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
14/bower_components /
25/node_modules /
3- /.pulp-cache /
46/output /
5- /.psci *
6- /src /.webpack.js
Original file line number Diff line number Diff line change 11language : node_js
22dist : trusty
33sudo : required
4- node_js :
5- - 5
4+ node_js : 6
65install :
7- - npm install pulp bower -g
8- - npm install && bower install
6+ - npm install -g bower
7+ - npm install
8+ - bower install
99script :
10- - pulp test
11-
10+ - npm run -s build
1211after_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 11{
22 "name" : " purescript-fixed-points" ,
3- "version" : " 0.2.0" ,
43 "license" : " Apache-2.0" ,
54 "authors" : [
65 " Jon Sterling <jon@jonmsterling.com>"
76 ],
8- "moduleType" : [
9- " node"
10- ],
7+ "repository" : {
8+ "type" : " git" ,
9+ "url" : " git://github.com/slamdata/purescript-fixed-points.git"
10+ },
1111 "ignore" : [
1212 " **/.*" ,
13- " node_modules" ,
1413 " bower_components" ,
15- " output"
14+ " node_modules" ,
15+ " output" ,
16+ " test" ,
17+ " bower.json" ,
18+ " package.json"
1619 ],
1720 "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"
2023 }
2124}
Original file line number Diff line number Diff line change 11{
22 "private" : true ,
3+ "scripts" : {
4+ "clean" : " rimraf output && rimraf .pulp-cache" ,
5+ "build" : " pulp build --censor-lib --strict"
6+ },
37 "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"
512 }
613}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ module Data.Eq1 where
33import Prelude
44
55class 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 11module Data.Functor.Nu
2- ( Nu ()
2+ ( Nu
33 , unfold
44 , observe
55 ) where
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ module Data.Ord1 where
33import Prelude
44
55class 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 11module Data.TacitString
2- ( TacitString ()
2+ ( TacitString
33 , hush
44 ) where
55
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments