Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 5316352

Browse files
committed
Use pulp build
1 parent df0abe0 commit 5316352

File tree

6 files changed

+18
-64
lines changed

6 files changed

+18
-64
lines changed

README.md

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

33
[![Build Status](https://travis-ci.org/purescript/purescript-eff.svg?branch=master)](https://travis-ci.org/purescript/purescript-eff)
4+
[![Dependency Status](https://www.versioneye.com/user/projects/55848cde3638610015000408/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848cde3638610015000408)
45

56
The `Eff` monad, for handling native side effects. For use with compiler version >= 0.7.
67

@@ -12,6 +13,6 @@ bower install purescript-eff
1213

1314
## Module documentation
1415

15-
- [Control.Monad.Eff](docs/Control.Monad.Eff.md)
16-
- [Control.Monad.Eff.Unsafe](docs/Control.Monad.Eff.Unsafe.md)
17-
- [Control.Monad.Eff.Class](docs/Control.Monad.Eff.Class.md)
16+
- [Control.Monad.Eff](docs/Control/Monad/Eff.md)
17+
- [Control.Monad.Eff.Unsafe](docs/Control/Monad.Eff/Unsafe.md)
18+
- [Control.Monad.Eff.Class](docs/Control/Monad.Eff/Class.md)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
data Eff :: # ! -> * -> *
77
```
88

9+
The `Eff` type constructor is used to represent _native_ effects.
10+
11+
See [Handling Native Effects with the Eff Monad](https://github.com/purescript/purescript/wiki/Handling-Native-Effects-with-the-Eff-Monad) for more details.
12+
13+
The first type parameter is a row of effects which represents the contexts in which a computation can be run, and the second type parameter is the return type.
14+
915
##### Instances
1016
``` purescript
1117
instance functorEff :: Functor (Eff e)
@@ -15,12 +21,6 @@ instance bindEff :: Bind (Eff e)
1521
instance monadEff :: Monad (Eff e)
1622
```
1723

18-
The `Eff` type constructor is used to represent _native_ effects.
19-
20-
See [Handling Native Effects with the Eff Monad](https://github.com/purescript/purescript/wiki/Handling-Native-Effects-with-the-Eff-Monad) for more details.
21-
22-
The first type parameter is a row of effects which represents the contexts in which a computation can be run, and the second type parameter is the return type.
23-
2424
#### `Pure`
2525

2626
``` purescript
File renamed without changes.
File renamed without changes.

gulpfile.js

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

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "jshint src && jscs src && pulp build && rimraf docs && pulp docs"
6+
},
37
"devDependencies": {
4-
"gulp": "^3.8.11",
5-
"gulp-jscs": "^1.6.0",
6-
"gulp-jshint": "^1.10.0",
7-
"gulp-plumber": "^1.0.0",
8-
"gulp-purescript": "^0.5.0-rc.1"
8+
"jscs": "^1.13.1",
9+
"jshint": "^2.8.0",
10+
"pulp": "^4.0.1",
11+
"rimraf": "^2.4.1"
912
}
1013
}

0 commit comments

Comments
 (0)