diff --git a/lib/nconf/provider.js b/lib/nconf/provider.js index d094cba..48bdb99 100644 --- a/lib/nconf/provider.js +++ b/lib/nconf/provider.js @@ -17,7 +17,7 @@ var async = require('async'), var Provider = exports.Provider = function (options) { // // Setup default options for working with `stores`, - // `overrides`, `process.env` and `process.argv`. + // `overrides`, `process.env`. // options = options || {}; this.stores = {}; @@ -30,7 +30,7 @@ var Provider = exports.Provider = function (options) { // in this instance // -['argv', 'env'].forEach(function (type) { +['env'].forEach(function (type) { Provider.prototype[type] = function () { var args = [type].concat(Array.prototype.slice.call(arguments)); return this.add.apply(this, args); diff --git a/package.json b/package.json index 240c7cf..012b942 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nconf-lite", "description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.", - "version": "1.0.0", + "version": "1.0.1", "author": "Charlie Robbins ", "contributors": [ "Matt Hamann ", @@ -19,10 +19,10 @@ "plugabble" ], "dependencies": { + "async": "^2.6.3", "ini": "^1.3.0" }, "devDependencies": { - "async": "^2.6.1", "coveralls": "^3.0.2", "eslint": "^6.0.0", "istanbul": "^0.4.1",