Skip to content

Commit f7c37c1

Browse files
committed
Merge pull request #2 from purescript-node/update-deps
Update deps
2 parents b200888 + 69ab4d7 commit f7c37c1

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/output/
44
/.psci*
55
/src/.webpack.js
6+
.pulp-cache/

bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"bower_components",
1010
"output"
1111
],
12-
"repository": {
13-
"type": "git",
14-
"url": "git://github.com/purescript-node/purescript-node-streams.git"
15-
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git://github.com/purescript-node/purescript-node-streams.git"
15+
},
1616
"devDependencies": {
1717
"purescript-console": "^0.1.0"
1818
},
1919
"dependencies": {
2020
"purescript-eff": "~0.1.1",
21-
"purescript-node-buffer": "~0.1.0",
21+
"purescript-node-buffer": "~0.2.0",
2222
"purescript-prelude": "~0.1.2"
2323
}
2424
}

src/Node/Stream.purs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- | This module provides a low-level wrapper for the Node Stream API.
22

3-
module Node.Stream
3+
module Node.Stream
44
( Stream()
55
, Read()
66
, Readable()
@@ -23,13 +23,13 @@ module Node.Stream
2323
, setDefaultEncoding
2424
, end
2525
) where
26-
26+
2727
import Prelude
2828

2929
import Node.Encoding
3030

3131
import Control.Monad.Eff
32-
32+
3333
-- | A stream.
3434
-- |
3535
-- | The type arguments track, in order:

0 commit comments

Comments
 (0)