From a06033845f09320b7a848d7df0d819396d9599ff Mon Sep 17 00:00:00 2001 From: Damon Oehlman Date: Thu, 26 Mar 2015 20:18:51 +1100 Subject: [PATCH 1/2] Go straight to the pull-core Source --- index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 7fd0b68..63556a2 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,4 @@ -var pull = require('pull-stream') +var pull = require('pull-core') module.exports = pull.Source(function (onClose) { var buffer = [], cbs = [], waiting = [], ended diff --git a/package.json b/package.json index 7e95d30..b0dc917 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "url": "git://github.com/dominictarr/pull-pushable.git" }, "dependencies": { - "pull-stream": "~2.18.2" + "pull-core": "~1.1.0" }, "devDependencies": { "tape": "~1.0.2" From ee407221c17d6a24645fe80286c982506a6daa44 Mon Sep 17 00:00:00 2001 From: Damon Oehlman Date: Thu, 26 Mar 2015 20:19:08 +1100 Subject: [PATCH 2/2] Upgrade tape while Im here --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b0dc917..dfcadbd 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "pull-core": "~1.1.0" }, "devDependencies": { - "tape": "~1.0.2" + "tape": "~3.5.0" }, "scripts": { "test": "set -e; for t in test/*.js; do node $t; done"