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

git-authors-cli

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-authors-cli - npm Package Compare versions

Comparing version 1.0.42 to 1.0.43

12

bin/index.js

@@ -16,4 +16,2 @@ #!/usr/bin/env node

const TTY = process.platform === 'win32' ? 'CON' : '/dev/tty'
const BOT_NAMES = ['ImgBotApp', 'greenkeeper', 'noreply', '\\bbot\\b', 'Travis CI']

@@ -61,3 +59,3 @@

console.log()
contributors.forEach(({ author, commits, name, email }) => {
contributors.forEach(({ author, commits, name }) => {
const prettyAuthor = colors.gray(author.replace(name, colors.white(name)))

@@ -95,4 +93,8 @@ const prettyCommits = colors.white(`${indent(maxIndent, commits)}${commits}`)

const pkgPath = path.join(cwd, 'package.json')
const cmd = `git shortlog -sne < ${TTY}`
const { stdout, stderr } = await execa.command(cmd, { cwd, shell: true })
const cmd = `git shortlog -sne HEAD`
const { stdout, stderr } = await execa.command(cmd, {
cwd,
shell: true,
stdio: ['ignore', 'pipe', 'pipe']
})

@@ -99,0 +101,0 @@ if (stderr) return processError(stderr)

@@ -5,3 +5,3 @@ {

"homepage": "https://nicedoc.io/Kikobeats/git-authors-cli",
"version": "1.0.42",
"version": "1.0.43",
"bin": {

@@ -18,4 +18,4 @@ "git-authors": "bin/index.js",

{
"name": "Manuel Rueda",
"email": "manuel.rueda.un@gmail.com"
"name": "Jonas Gloning",
"email": "34194370+jonasgloning@users.noreply.github.com"
},

@@ -29,2 +29,10 @@ {

"email": "jorge@bitnami.com"
},
{
"name": "Manuel Rueda",
"email": "manuel.rueda.un@gmail.com"
},
{
"name": "Thanh Tran",
"email": "trongthanh@gmail.com"
}

@@ -31,0 +39,0 @@ ],

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