Socket
Socket
Sign inDemoInstall

gitlog

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlog - npm Package Compare versions

Comparing version 5.0.2 to 5.1.0

6

dist/index.d.ts

@@ -62,2 +62,8 @@ /// <reference types="node" />

/**
* Pass the -follow option to follow files across renames
*
* @default false
*/
follow?: boolean;
/**
* The number of commits to return

@@ -64,0 +70,0 @@ *

4

dist/index.js

@@ -88,2 +88,3 @@ var __assign = (this && this.__assign) || function () {

includeMergeCommitFiles: false,
follow: false,
findCopiesHarder: false,

@@ -179,2 +180,5 @@ all: false,

}
if (options.follow) {
command.push("--follow");
}
command.push("-n ".concat(options.number));

@@ -181,0 +185,0 @@ command = addOptionalArguments(command, options);

2

package.json
{
"name": "gitlog",
"version": "5.0.2",
"version": "5.1.0",
"description": "Git log parser for Node.JS",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -108,2 +108,8 @@ # node-gitlog

### follow
Pass the --follow option to follow files across renames.
This option is disabled by default.
### all

@@ -110,0 +116,0 @@

Sorry, the diff of this file is not supported yet

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