File tree Expand file tree Collapse file tree 9 files changed +22
-64
lines changed Expand file tree Collapse file tree 9 files changed +22
-64
lines changed Original file line number Diff line number Diff line change 4
4
/bower_components /
5
5
/node_modules /
6
6
/output /
7
- /tmp /
Original file line number Diff line number Diff line change 1
1
language : node_js
2
+ sudo : false
2
3
node_js :
3
4
- 0.10
4
5
env :
8
9
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
9
10
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
10
11
- chmod a+x $HOME/purescript
11
- - npm install bower gulp -g
12
- - npm install && bower install
12
+ - npm install
13
13
script :
14
- - gulp
14
+ - npm run build
Original file line number Diff line number Diff line change 1
1
# purescript-profunctor
2
2
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-profunctor.svg )] ( https://github.com/purescript/purescript-profunctor/releases )
3
4
[ ![ Build Status] ( https://travis-ci.org/purescript/purescript-profunctor.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-profunctor )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/55848c93363861001b00019f/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/55848c93363861001b00019f )
4
6
5
7
Profunctor typeclass.
6
8
@@ -12,6 +14,6 @@ bower install purescript-profunctor
12
14
13
15
## Module documentation
14
16
15
- - [ Data.Profunctor] ( docs/Data. Profunctor.md )
16
- - [ Data.Profunctor.Choice] ( docs/Data. Profunctor. Choice.md )
17
- - [ Data.Profunctor.Strong] ( docs/Data. Profunctor. Strong.md )
17
+ - [ Data.Profunctor] ( docs/Data/ Profunctor.md )
18
+ - [ Data.Profunctor.Choice] ( docs/Data/ Profunctor/ Choice.md )
19
+ - [ Data.Profunctor.Strong] ( docs/Data/ Profunctor/ Strong.md )
Original file line number Diff line number Diff line change 23
23
" output" ,
24
24
" test" ,
25
25
" bower.json" ,
26
- " gulpfile.js" ,
27
26
" package.json"
28
27
],
29
28
"dependencies" : {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ instance choiceFn :: Choice Function
25
25
(+++) :: forall p a b c d. (Category p, Choice p) => p a b -> p c d -> p (Either a c) (Either b d)
26
26
```
27
27
28
+ _ right-associative / precedence 2_
29
+
28
30
Compose a value acting on a sum from two values, each acting on one of
29
31
the components of the sum.
30
32
@@ -34,6 +36,8 @@ the components of the sum.
34
36
(|||) :: forall p a b c. (Category p, Choice p) => p a c -> p b c -> p (Either a b) c
35
37
```
36
38
39
+ _ right-associative / precedence 2_
40
+
37
41
Compose a value which eliminates a sum from two values, each eliminating
38
42
one side of the sum.
39
43
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ instance strongFn :: Strong Function
25
25
(***) :: forall p a b c d. (Category p, Strong p) => p a b -> p c d -> p (Tuple a c) (Tuple b d)
26
26
```
27
27
28
+ _ right-associative / precedence 3_
29
+
28
30
Compose a value acting on a ` Tuple ` from two values, each acting on one of
29
31
the components of the ` Tuple ` .
30
32
@@ -34,6 +36,8 @@ the components of the `Tuple`.
34
36
(&&&) :: forall p a b c. (Category p, Strong p) => p a b -> p a c -> p a (Tuple b c)
35
37
```
36
38
39
+ _ right-associative / precedence 3_
40
+
37
41
Compose a value which introduces a ` Tuple ` from two values, each introducing
38
42
one side of the ` Tuple ` .
39
43
Load Diff This file was deleted.
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 build && 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
- "rimraf" : " ^2.3.3"
8
+ "pulp" : " ^4.0.2" ,
9
+ "rimraf" : " ^2.4.1"
8
10
}
9
11
}
You can’t perform that action at this time.
0 commit comments