New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

getcontributors

Package Overview
Dependencies
Maintainers
2
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

getcontributors - npm Package Compare versions

Comparing version 2.3.0 to 2.4.0-next.1585289803.e692c3cadf86633737a64ac841672f9cfedf02d8

7

edition-browsers/index.js

@@ -87,5 +87,6 @@ /* eslint camelcase:0 */

if (packageData.author) {
const fellow = Fellow.ensure(packageData.author)
fellow.authoredRepositories.add(slug)
added.add(fellow)
Fellow.add(packageData.author).forEach((fellow) => {
fellow.authoredRepositories.add(slug)
added.add(fellow)
})
}

@@ -92,0 +93,0 @@ for (const contributor of packageData.contributors || []) {

@@ -95,5 +95,6 @@ 'use strict'

if (packageData.author) {
const fellow = fellow_1.default.ensure(packageData.author)
fellow.authoredRepositories.add(slug)
added.add(fellow)
fellow_1.default.add(packageData.author).forEach((fellow) => {
fellow.authoredRepositories.add(slug)
added.add(fellow)
})
}

@@ -100,0 +101,0 @@ for (const contributor of packageData.contributors || []) {

# History
## v2.4.0 2020 March 27
- Fix for multiple authors inside `package.json:author`
## v2.3.0 2020 March 27

@@ -4,0 +8,0 @@

{
"title": "Get Contributors",
"name": "getcontributors",
"version": "2.3.0",
"version": "2.4.0-next.1585289803.e692c3cadf86633737a64ac841672f9cfedf02d8",
"description": "Fetch all the contributors from a github repository, github organisation, or github search",

@@ -6,0 +6,0 @@ "homepage": "https://github.com/bevry/getcontributors",

@@ -55,3 +55,3 @@ <!-- TITLE/ -->

<script type="module">
import * as pkg from '//cdn.pika.dev/getcontributors/^2.3.0'
import * as pkg from '//cdn.pika.dev/getcontributors/^2.4.0'
</script>

@@ -64,3 +64,3 @@ ```

<script type="module">
import * as pkg from '//unpkg.com/getcontributors@^2.3.0'
import * as pkg from '//unpkg.com/getcontributors@^2.4.0'
</script>

@@ -73,3 +73,3 @@ ```

<script type="module">
import * as pkg from '//dev.jspm.io/getcontributors@2.3.0'
import * as pkg from '//dev.jspm.io/getcontributors@2.4.0'
</script>

@@ -76,0 +76,0 @@ ```

@@ -197,5 +197,6 @@ /* eslint camelcase:0 */

if (packageData.author) {
const fellow = Fellow.ensure(packageData.author)
fellow.authoredRepositories.add(slug)
added.add(fellow)
Fellow.add(packageData.author).forEach((fellow) => {
fellow.authoredRepositories.add(slug)
added.add(fellow)
})
}

@@ -202,0 +203,0 @@ for (const contributor of packageData.contributors || []) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc