Skip to content

Commit fc87003

Browse files
committed
fixing confuse config path.
1 parent 5fa16f6 commit fc87003

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var config = require('confuse')({files:['.s3npm.json']});
1+
var config = require('confuse')({dir:process.cwd(),files:['.s3npm.json']});
22
var argv = require('optimist').argv;
33
config._ = argv._;
44

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "s3npm",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"s3bucket": "soldair-s3npm",
55
"description": "publish packages to your own s3 bucket, install an resolve nested private or public deps without replacing or hacking npm",
66
"main": "index.js",
77
"scripts": {
8-
"test": "fail=0; for t in test/*.js; do node $t; if [ $? -ne 0 ]; then fail=$?; fi done; exit $fail;"
8+
"test": "fail=0; for t in test/*.js; do node $t; if [ $? -ne 0 ]; then fail=$?; fi done; exit $fail;",
99
},
1010
"repository": {
1111
"type": "git",

0 commit comments

Comments
 (0)