Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2017-05-05 01:34:29 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 04:41:40 +0300
commitc28c4a699653738ed82c26aa8dd9de3e0a3f13bd (patch)
treef649d655fcd1be692ff2dc4f6c2a71c2216fb6fe /node_modules
parent3b7a1e72ddd03220c6839fa933623086f7e80994 (diff)
pacote@2.7.5
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/pacote/CHANGELOG.md10
-rw-r--r--node_modules/pacote/lib/fetchers/registry/registry-key.js2
-rw-r--r--node_modules/pacote/package.json10
3 files changed, 16 insertions, 6 deletions
diff --git a/node_modules/pacote/CHANGELOG.md b/node_modules/pacote/CHANGELOG.md
index 18838fca6..c629737a9 100644
--- a/node_modules/pacote/CHANGELOG.md
+++ b/node_modules/pacote/CHANGELOG.md
@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+<a name="2.7.5"></a>
+## [2.7.5](https://github.com/zkat/pacote/compare/v2.7.4...v2.7.5) (2017-05-04)
+
+
+### Bug Fixes
+
+* **registry-key:** Use pathname instead of path in registryKey (#85) ([5339831](https://github.com/zkat/pacote/commit/5339831))
+
+
+
<a name="2.7.4"></a>
## [2.7.4](https://github.com/zkat/pacote/compare/v2.7.3...v2.7.4) (2017-05-04)
diff --git a/node_modules/pacote/lib/fetchers/registry/registry-key.js b/node_modules/pacote/lib/fetchers/registry/registry-key.js
index 4df3e2382..f53e9a9b4 100644
--- a/node_modules/pacote/lib/fetchers/registry/registry-key.js
+++ b/node_modules/pacote/lib/fetchers/registry/registry-key.js
@@ -9,7 +9,7 @@ function registryKey (registry) {
const parsed = url.parse(registry)
const formatted = url.format({
host: parsed.host,
- path: parsed.path,
+ pathname: parsed.pathname,
slashes: parsed.slashes
})
return url.resolve(formatted, '.')
diff --git a/node_modules/pacote/package.json b/node_modules/pacote/package.json
index a329da3c5..660d14471 100644
--- a/node_modules/pacote/package.json
+++ b/node_modules/pacote/package.json
@@ -1,7 +1,7 @@
{
"_from": "pacote@latest",
- "_id": "pacote@2.7.4",
- "_integrity": "sha512-yJObPm3YaNtHUyc6g9OSIY0SV/AnTOzs5rJl8cbxCBw5emwwXH8cc++4x8Ry96Vh1+HGYuC2eM8ZU8vixuw5gA==",
+ "_id": "pacote@2.7.5",
+ "_integrity": "sha512-+wMPN8DqoTVlDtkwoyTx22o4I9+K/coP7BaGJrj49MwvbqsLXNw2wfmBPhI7E63qoIU1GPvZUVcsSgBuqFvY3A==",
"_location": "/pacote",
"_phantomChildren": {
"cacache": "9.0.0",
@@ -30,8 +30,8 @@
"#USER",
"/"
],
- "_resolved": "https://registry.npmjs.org/pacote/-/pacote-2.7.4.tgz",
- "_shasum": "0a817bf3fdbeb551a33d91295643627e79599052",
+ "_resolved": "https://registry.npmjs.org/pacote/-/pacote-2.7.5.tgz",
+ "_shasum": "6c6be08ea3cfb70d2a0e22485840dd9e20423234",
"_shrinkwrap": null,
"_spec": "pacote@latest",
"_where": "/Users/zkat/Documents/code/npm",
@@ -122,5 +122,5 @@
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
- "version": "2.7.4"
+ "version": "2.7.5"
}