Skip to content

Commit

Permalink
Merge pull request microsoft#50049 from callumisitt/patch-1
Browse files Browse the repository at this point in the history
Add link to package homepage in package.json files
  • Loading branch information
aeschli authored May 22, 2018
2 parents 38fd216 + 6d25151 commit f92bace
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extensions/npm/src/features/packageJSONContribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,9 @@ export class PackageJSONContribution implements IJSONContribution {
if (latest) {
result.push(localize('json.npm.version.hover', 'Latest version: {0}', latest));
}
if (obj.homepage) {
result.push(obj.homepage);
}
return result;
}
} catch (e) {
Expand Down

0 comments on commit f92bace

Please sign in to comment.