diff options
author | isaacs <i@izs.me> | 2013-12-11 10:20:26 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-12-11 10:20:26 -0800 |
commit | a22de4f7eed04f14e590fdc5c8739d2ee17753e5 (patch) | |
tree | ac02ad050e8ca27e6d792d6923f9d0c0d508b298 /deps/npm/node_modules/npmconf | |
parent | f16edd2632930e3fbfead4d6d52eeac87824f1a6 (diff) | |
download | node-new-a22de4f7eed04f14e590fdc5c8739d2ee17753e5.tar.gz |
npm: Upgrade to 1.3.17
Diffstat (limited to 'deps/npm/node_modules/npmconf')
5 files changed, 11 insertions, 8 deletions
diff --git a/deps/npm/node_modules/npmconf/config-defs.js b/deps/npm/node_modules/npmconf/config-defs.js index 17bcf56d88..3ecbe60a52 100644 --- a/deps/npm/node_modules/npmconf/config-defs.js +++ b/deps/npm/node_modules/npmconf/config-defs.js @@ -230,6 +230,7 @@ Object.defineProperty(exports, "defaults", {get: function () { , "fetch-retry-maxtimeout": 60000 , git: "git" + , "git-tag-version": true , global : false , globalconfig : path.resolve(globalPrefix, "etc", "npmrc") @@ -327,6 +328,7 @@ exports.types = , "fetch-retry-mintimeout": Number , "fetch-retry-maxtimeout": Number , git: String + , "git-tag-version": Boolean , global : Boolean , globalconfig : path , globalignorefile: path diff --git a/deps/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json b/deps/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json index 2827bacf1d..b7117440c6 100644 --- a/deps/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json +++ b/deps/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json @@ -30,7 +30,7 @@ "homepage": "https://github.com/isaacs/proto-list", "_id": "proto-list@1.2.2", "dist": { - "shasum": "d84669527f7117d176615dc4bdb54054160f3af1" + "shasum": "48b88798261ec2c4a785720cdfec6200d57d3326" }, "_from": "proto-list@~1.2.1", "_resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.2.tgz" diff --git a/deps/npm/node_modules/npmconf/node_modules/config-chain/package.json b/deps/npm/node_modules/npmconf/node_modules/config-chain/package.json index ca33c12eaf..72ab798b72 100644 --- a/deps/npm/node_modules/npmconf/node_modules/config-chain/package.json +++ b/deps/npm/node_modules/npmconf/node_modules/config-chain/package.json @@ -29,7 +29,7 @@ }, "_id": "config-chain@1.1.8", "dist": { - "shasum": "0943d0b7227213a20d4eaff4434f4a1c0a052cad" + "shasum": "a3b9ae699dedb3a7837615001f3cf646ca37c77a" }, "_from": "config-chain@~1.1.8", "_resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.8.tgz" diff --git a/deps/npm/node_modules/npmconf/package.json b/deps/npm/node_modules/npmconf/package.json index 757e544ea3..76a380976e 100644 --- a/deps/npm/node_modules/npmconf/package.json +++ b/deps/npm/node_modules/npmconf/package.json @@ -1,6 +1,6 @@ { "name": "npmconf", - "version": "0.1.6", + "version": "0.1.7", "description": "The config thing npm uses", "main": "npmconf.js", "directories": { @@ -45,10 +45,10 @@ "url": "https://github.com/isaacs/npmconf/issues" }, "homepage": "https://github.com/isaacs/npmconf", - "_id": "npmconf@0.1.6", + "_id": "npmconf@0.1.7", "dist": { - "shasum": "b5d981cc732e6ca0875caeae2cac08018ebb0343" + "shasum": "f0be6f90c672046b562175b6d99c2d152bd9f17c" }, - "_from": "npmconf@0.1.6", - "_resolved": "https://registry.npmjs.org/npmconf/-/npmconf-0.1.6.tgz" + "_from": "npmconf@0.1.7", + "_resolved": "https://registry.npmjs.org/npmconf/-/npmconf-0.1.7.tgz" } diff --git a/deps/npm/node_modules/npmconf/test/builtin.js b/deps/npm/node_modules/npmconf/test/builtin.js index 3b787a9e7c..c5216ed902 100644 --- a/deps/npm/node_modules/npmconf/test/builtin.js +++ b/deps/npm/node_modules/npmconf/test/builtin.js @@ -34,7 +34,7 @@ var gcData = { 'package-config:foo': 'boo' } var biData = { 'builtin-config': true } -var cli = { foo: 'bar', heading: 'foo' } +var cli = { foo: 'bar', heading: 'foo', 'git-tag-version': false } var expectList = [ cli, @@ -68,6 +68,7 @@ test('with builtin', function (t) { t.equal(npmconf.rootConf.root, npmconf.defs.defaults) t.equal(conf.root, npmconf.defs.defaults) t.equal(conf.get('heading'), 'foo') + t.equal(conf.get('git-tag-version'), false) t.end() }) }) |