diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..43c97e7 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false 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 df0d316..899dc3c 100644 --- a/package.json +++ b/package.json @@ -11,9 +11,9 @@ }, "dependencies": { "@nearform/trace-events-parser": "^1.0.0", - "multistream": "^2.1.0", + "@nearform/multistream": "5.0.0-2", "pump": "^3.0.0", - "through2": "^2.0.3" + "through2": "^3.0.1" }, "devDependencies": { "standard": "^11.0.1",