Skip to content

Commit

Permalink
Merge pull request #219 from pulsar-edit/populate-owner-on-package-build
Browse files Browse the repository at this point in the history
Add `owner` to build packageObject output
  • Loading branch information
confused-Techie authored Jan 10, 2024
2 parents fba9296 + 42fe1e5 commit 49ee378
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/PackageObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ class PackageObject {
// And should be considered our master reference for the Package Object Short Data Structure
let obj = {
name: this.name,
owner: this.owner,
repository: this.repository,
downloads: this.downloads,
stargazers_count: this.stargazers_count,
Expand All @@ -233,6 +234,7 @@ class PackageObject {
// Should be considered the master Package Object Full data structure
let obj = {
name: this.name,
owner: this.owner,
repository: this.repository,
downloads: this.downloads,
stargazers_count: this.stargazers_count,
Expand Down

0 comments on commit 49ee378

Please sign in to comment.