🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@cyberalien/git-utils

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

@cyberalien/git-utils - npm Package Compare versions

Comparing version
0.0.4
to
0.0.5
+1
-4
lib/git/commit.js

@@ -22,6 +22,3 @@ import { execAsync } from "../misc/exec.js";

}
if (push) {
const pushResult = await execAsync(`git push origin "${await getCurrentGitBranch(target)}"`, { cwd: target });
console.log("pushResult:", pushResult.stdout);
}
if (push) await execAsync(`git push origin "${await getCurrentGitBranch(target)}"`, { cwd: target });
} catch {

@@ -28,0 +25,0 @@ return false;

+1
-1

@@ -7,3 +7,3 @@ import { GitRepoConfig } from "./types.js";

bumpVersion?: string | ((currentVersion: string) => string);
files?: Record<string, string | object>;
files?: Record<string, string | null | Record<string, unknown> | Array<unknown>>;
commit?: string;

@@ -10,0 +10,0 @@ }

@@ -6,3 +6,3 @@ {

"author": "Vjacheslav Trushkin",
"version": "0.0.4",
"version": "0.0.5",
"license": "UNLICENSED",

@@ -9,0 +9,0 @@ "bugs": "https://github.com/cyberalien/svg-utils/issues",