From c20993667d7693632f839fe0e21adb1d2dea65d8 Mon Sep 17 00:00:00 2001 From: Michiel Helvensteijn Date: Mon, 9 Oct 2017 17:35:29 +0100 Subject: [PATCH 1/2] Fix the knox dependency, which indirectly pulled in mime@*, breaking things --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3370c67..d89b0b8 100644 --- a/package.json +++ b/package.json @@ -23,11 +23,11 @@ "dependencies": { "cp": "^0.2.0", "fs-cp": "^1.3.0", - "knox": "^0.9.1", + "knox-s3": "^0.9.3", "thunkify": "^2.1.2", "when": "^3.5.0" }, "devDependencies": { "kn-release": "^0.1.2" } -} \ No newline at end of file +} From 97511f548c62b9bc967c4e09798448682cfe94c8 Mon Sep 17 00:00:00 2001 From: Michiel Helvensteijn Date: Mon, 9 Oct 2017 17:38:57 +0100 Subject: [PATCH 2/2] Fix the knox dependency, which indirectly pulled in mime@*, breaking things --- s3-cnpm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3-cnpm.js b/s3-cnpm.js index 147283f..ea00851 100644 --- a/s3-cnpm.js +++ b/s3-cnpm.js @@ -2,7 +2,7 @@ /** @author Karolis Narkevicius */ var path = require('path'); -var knox = require('knox'); +var knox = require('knox-s3'); var when = require('when'); var thunkify = require('thunkify'); var cp = require('fs-cp');