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

offline-github-changelog

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

offline-github-changelog - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

6

index.js
const { spawnSync } = require("child_process");
const markdownEscape = require("markdown-escape");
const generateChangelog = () => {
const getOrigin = spawnSync("git", ["remote", "get-url", "origin"]);
const generateChangelog = (originName) => {
const getOrigin = spawnSync("git", ["remote", "get-url", originName]);

@@ -94,2 +94,2 @@ const repositoryUrl = getOrigin.stdout

module.exports = generateChangelog;
module.exports = { generateChangelog };
{
"name": "offline-github-changelog",
"version": "1.3.0",
"version": "1.4.0",
"description": "A changelog generator for Github projects that only uses the Git history",

@@ -29,4 +29,5 @@ "main": "index.js",

"dependencies": {
"markdown-escape": "^1.0.2"
"markdown-escape": "^1.0.2",
"meow": "5.0.0"
}
}

@@ -17,2 +17,5 @@ ## offline-github-changelog

offline-github-changelog > CHANGELOG.md
# with a different remote
offline-github-changelog --remote=myremote > CHANGELOG.md
```

@@ -19,0 +22,0 @@

Sorry, the diff of this file is not supported yet

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