New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ggit

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ggit - npm Package Compare versions

Comparing version 1.17.2 to 1.18.0

6

package.json
{
"name": "ggit",
"description": "Local promise-returning git command wrappers",
"version": "1.17.2",
"version": "1.18.0",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",

@@ -59,2 +59,3 @@ "bin": {

"git-issues": "1.3.1",
"github-post-release": "1.7.1",
"grunt": "0.4.5",

@@ -106,3 +107,4 @@ "grunt-bump": "0.7.3",

"release": {
"analyzeCommits": "simple-commit-message"
"analyzeCommits": "simple-commit-message",
"generateNotes": "github-post-release"
},

@@ -109,0 +111,0 @@ "repository": {

@@ -11,5 +11,15 @@ 'use strict'

var write = require('fs').writeFileSync
var contents = JSON.stringify({ id: id }, null, 2) + '\n'
var short = id.substr(0, 7)
var data = {
id: id,
short: short
}
var contents = JSON.stringify(data, null, 2) + '\n'
write(options.file, contents, 'utf8')
console.log('saved last commit %s in file %s', id, options.file)
console.log(
'saved last commit %s (short %s) in file %s',
id,
short,
options.file
)
}

@@ -16,0 +26,0 @@ console.log('last commit:', id)

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