Skip to content

Commit e2fa581

Browse files
committedJan 21, 2019
fix: adds _id to normalise metadata (#1194)
1 parent 056d396 commit e2fa581

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/lib/storage-utils.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ function normalizePackage(pkg: Package) {
5353
pkg._rev = DEFAULT_REVISION;
5454
}
5555

56+
if (_.isString(pkg._id) === false) {
57+
pkg._id = pkg.name;
58+
}
59+
5660
// normalize dist-tags
5761
normalizeDistTags(pkg);
5862

@@ -107,7 +111,7 @@ export function normalizeContributors(contributors: Array<Author>): Array<Author
107111
return contributors;
108112
}
109113

110-
export const WHITELIST = ['_rev', 'name', 'versions', 'dist-tags', 'readme', 'time'];
114+
export const WHITELIST = ['_rev', 'name', 'versions', 'dist-tags', 'readme', 'time', '_id'];
111115

112116
export function cleanUpLinksRef(keepUpLinkData: boolean, result: Package): Package {
113117
const propertyToKeep = [...WHITELIST];

0 commit comments

Comments
 (0)
Please sign in to comment.