pacote 9.5.8 → 9.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
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.
|
|
4
4
|
|
|
5
|
+
<a name="9.5.9"></a>
|
|
6
|
+
## [9.5.9](https://github.com/npm/pacote/compare/v9.5.8...v9.5.9) (2019-10-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* include peerDependenciesMeta in manifest ([7a400d3](https://github.com/npm/pacote/commit/7a400d3)), closes [/github.com/npm/cli/pull/224#issuecomment-547666807](https://github.com//github.com/npm/cli/pull/224/issues/issuecomment-547666807)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
5
15
|
<a name="9.5.8"></a>
|
|
6
16
|
## [9.5.8](https://github.com/npm/pacote/compare/v9.5.7...v9.5.8) (2019-08-20)
|
|
7
17
|
|
package/lib/fetchers/git.js
CHANGED
|
@@ -166,7 +166,7 @@ function withTmp (opts, cb) {
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
// Only certain whitelisted hosted gits support
|
|
169
|
+
// Only certain whitelisted hosted gits support shallow cloning
|
|
170
170
|
const SHALLOW_HOSTS = new Set(['github', 'gist', 'gitlab', 'bitbucket'])
|
|
171
171
|
function cloneRepo (spec, repo, resolvedRef, rawRef, tmp, opts) {
|
|
172
172
|
const ref = resolvedRef ? resolvedRef.ref : rawRef
|
package/lib/finalize-manifest.js
CHANGED
|
@@ -83,6 +83,7 @@ function Manifest (pkg, fromTarball, fullMetadata) {
|
|
|
83
83
|
this.os = pkg.os || fromTarball.os
|
|
84
84
|
this.dependencies = pkg.dependencies || {}
|
|
85
85
|
this.optionalDependencies = pkg.optionalDependencies || {}
|
|
86
|
+
this.peerDependenciesMeta = pkg.peerDependenciesMeta || {}
|
|
86
87
|
this.devDependencies = pkg.devDependencies || {}
|
|
87
88
|
const bundled = (
|
|
88
89
|
pkg.bundledDependencies ||
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|