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.1 to 5.0.2

6

dist/index.d.ts

@@ -24,2 +24,4 @@ /// <reference types="node" />

export type CommitField = keyof typeof fieldMap;
declare const notOptFields: readonly ["status", "files"];
type NotOptField = (typeof notOptFields)[number];
export interface FileLineRange {

@@ -104,5 +106,3 @@ /** Will be pass as -L <startLine>,<endLine>:<file> */

type CommitBase<Field extends string> = Record<Field, string>;
type CommitBaseWithFiles<Field extends string> = Record<Field | "status", string> & {
files: string[];
};
type CommitBaseWithFiles<Field extends string> = CommitBase<Field> & Record<NotOptField, string[]>;
declare function gitlog<Field extends CommitField = DefaultField>(userOptions: GitlogOptions<Field> & {

@@ -109,0 +109,0 @@ nameStatus: false;

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

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

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