Socket
Socket
Sign inDemoInstall

make-dev-fast

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

make-dev-fast - npm Package Compare versions

Comparing version 0.2.20 to 0.2.21

11

dist/git.js

@@ -259,3 +259,2 @@ var __create = Object.create;

async handleCommitDo() {
const preCommitId = await (0, import_utils.exec)(`git rev-parse HEAD`);
await this.handleAddDo();

@@ -290,5 +289,9 @@ const st = await (0, import_utils.exec)(`git status`);

await (0, import_utils.exec)(`git commit -m '${type}: ${message}'`);
const currentCommitId = await (0, import_utils.exec)(`git rev-parse HEAD`);
const lines = await (0, import_utils.exec)(`git log ${preCommitId}..${currentCommitId} --numstat`);
await this.report(lines);
try {
const preCommitId = await (0, import_utils.exec)(`git rev-parse HEAD`);
const currentCommitId = await (0, import_utils.exec)(`git rev-parse HEAD`);
const lines = await (0, import_utils.exec)(`git log ${preCommitId}..${currentCommitId} --numstat`);
await this.report(lines);
} catch (e) {
}
}

@@ -295,0 +298,0 @@ async handlePushDo() {

{
"name": "make-dev-fast",
"version": "0.2.20",
"version": "0.2.21",
"description": "make-dev-fast",

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

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