From 4467817e5e191c43db724f95bd4b02be1f4d2bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 18 Feb 2020 12:08:01 +0100 Subject: [PATCH 1/4] Disable package-lock.json. --- .npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..43c97e7 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false From bc5df1ed6c7ccbc0d57a5cb8c8f34fff741330a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 18 Feb 2020 12:08:26 +0100 Subject: [PATCH 2/4] Update streams dependencies. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index df0d316..94172a6 100644 --- a/package.json +++ b/package.json @@ -11,9 +11,9 @@ }, "dependencies": { "@nearform/trace-events-parser": "^1.0.0", - "multistream": "^2.1.0", + "multistream": "^4.0.0", "pump": "^3.0.0", - "through2": "^2.0.3" + "through2": "^3.0.1" }, "devDependencies": { "standard": "^11.0.1", From 51a57d4befdeb80138e1606712f19a99c0ee8b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 24 Mar 2020 11:02:05 +0100 Subject: [PATCH 3/4] use multistream with destroy() fix --- index.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 595b3ac..b9c401d 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ const through = require('through2') const parser = require('@nearform/trace-events-parser') -const multistream = require('multistream') +// multistream fork with https://github.com/feross/multistream/pull/47 applied +const multistream = require('@nearform/multistream') const pump = require('pump') const fs = require('fs') const path = require('path') diff --git a/package.json b/package.json index 94172a6..795fa80 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@nearform/trace-events-parser": "^1.0.0", - "multistream": "^4.0.0", + "@nearform/multistream": "5.0.0-1", "pump": "^3.0.0", "through2": "^3.0.1" }, From 915b39e315a771edc67f11075723e8eacc049798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 31 Mar 2020 10:03:23 +0200 Subject: [PATCH 4/4] restore node.js 6 support --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 795fa80..899dc3c 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@nearform/trace-events-parser": "^1.0.0", - "@nearform/multistream": "5.0.0-1", + "@nearform/multistream": "5.0.0-2", "pump": "^3.0.0", "through2": "^3.0.1" },