Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

commitify

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commitify - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

8

bin/commit.js

@@ -8,3 +8,7 @@ const { spawnSync } = require("child_process");

module.exports = function (params) {
spawnSync("git", ["commit", "-m", format(params)], { stdio: "inherit" });
}
spawnSync("git", ["commit", `-${params.addFlag ? "a" : ""}m`, format(params)], { stdio: "inherit" });
if (params.gitPush) {
spawnSync("git", ["push"], { stdio: "inherit" });
}
}

@@ -9,2 +9,7 @@ const { loadRCFile } = require("./utils");

{
type: "confirm",
name: "addFlag",
message: "Do you want to add git changes before commit?",
default: true
}, {
type: "list",

@@ -24,3 +29,8 @@ name: "type",

default: "i am too lazy"
}, {
type: "confirm",
name: "gitPush",
message: "Do you want to push your commit?",
default: true
}
];
{
"name": "commitify",
"version": "0.0.4",
"version": "0.0.5",
"description": "Easy git commit message with meaning",

@@ -5,0 +5,0 @@ "preferGlobal": true,

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