From 3aeb1b1fb205c6e10320399e1adf296fe9157d86 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Wed, 23 May 2018 18:55:03 -0700 Subject: [PATCH 1/2] Upgrade concat-stream to 1.6.2 Fixes #70. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea2099a..f6e75ea 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "extract" ], "dependencies": { - "concat-stream": "1.6.0", + "concat-stream": "1.6.2", "debug": "2.6.9", "mkdirp": "0.5.1", "yauzl": "2.4.1" From 4514f667b390355e8a4a1c718638dc0daa1a3699 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Wed, 23 May 2018 18:59:25 -0700 Subject: [PATCH 2/2] Travis: test Node 8 & 10 as well --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c8ae71a..2e470e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,7 @@ language: node_js node_js: - '0.12' - 'iojs' - - '4.0' - - '6.0' + - '4' + - '6' + - '8' + - '10'