Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantcornholio committed Aug 12, 2018
1 parent 31078e0 commit 891a757
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
"name": "veendor",
"version": "2.1.0",
"description": "a tool for stroing your npm dependencies in arbitraty storage",
"main": "dist/bin/veendor.js",
"bin": {
"veendor": "./dist/bin/veendor.js"
"veendor": "dist/bin/veendor.js"
},
"scripts": {
"test": "mocha --file test/setup.js --reporter dot 'test/**/*.test.js'",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/backends/s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export async function pull(hash: string, options: S3Options, _cachedir: string,
if (error.statusCode === 404) {
throw new errors.BundleNotFoundError();
} else {
throw new BundleDownloadError(error.message);
throw new BundleDownloadError(error.stack);
}
}

Expand Down

0 comments on commit 891a757

Please sign in to comment.