[Pkg-javascript-commits] [node-stream-combiner2] 36/41: Use node stream instead of module
Bastien Roucariès
rouca at moszumanska.debian.org
Wed Sep 6 09:57:54 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-stream-combiner2.
commit e1187ae808ac4ff3fb5ca8b8b9fc10fffa9fbe92
Author: Bastien ROUCARIÈS <roucaries.bastien at gmail.com>
Date: Sun Aug 27 23:04:12 2017 +0200
Use node stream instead of module
Forwarded; no
---
index.js | 4 ++--
package.json | 3 +--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/index.js b/index.js
index 1a279a3..d48f9c7 100644
--- a/index.js
+++ b/index.js
@@ -1,5 +1,5 @@
-var PassThrough = require('readable-stream').PassThrough
-var Readable = require('readable-stream').Readable
+var PassThrough = require('stream').PassThrough
+var Readable = require('stream').Readable
var duplexer = require('duplexer2')
module.exports = function () {
diff --git a/package.json b/package.json
index 6faec8b..565c2d9 100644
--- a/package.json
+++ b/package.json
@@ -7,8 +7,7 @@
"url": "git://github.com/substack/stream-combiner2.git"
},
"dependencies": {
- "duplexer2": "~0.1.0",
- "readable-stream": "^2.0.2"
+ "duplexer2": "~0.1.0"
},
"devDependencies": {
"tape": "~2.3.0",
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-stream-combiner2.git
More information about the Pkg-javascript-commits
mailing list