🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

git-pull-run

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-pull-run - npm Package Compare versions

Comparing version

to
1.1.1-next.1

dist/src/index.js

2

dist/package.json
{
"name": "git-pull-run",
"version": "1.1.0",
"version": "1.1.1-next.0",
"description": "Run commands and scripts after git pull",

@@ -5,0 +5,0 @@ "bin": "./dist/cli.js",

{
"name": "git-pull-run",
"version": "1.1.1-next.0",
"version": "1.1.1-next.1",
"description": "Run commands and scripts after git pull",

@@ -5,0 +5,0 @@ "bin": "./dist/cli.js",

@@ -18,5 +18,14 @@ import debugLog from 'debug';

debugLog.enable('git-pull-run');
function humanize(ms: number): string;
function humanize(ms: string): number;
function humanize(ms: number | string): string | number {
return ``;
}
debugLog.humanize = humanize;
const info = debugLog.debug('git-pull-run');
info.log = console.log.bind(console);
export { info };

@@ -23,0 +32,0 @@