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

detect-repo-changelog

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

detect-repo-changelog - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "detect-repo-changelog",
"version": "1.0.0",
"version": "1.0.1",
"description": "Scans a repository directory, searching for a changelog file",

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

@@ -34,4 +34,10 @@ # detect-repo-changelog

detectRepoChangelog('http://google.com')
.then((changelogFile) => console.log(changelogFile ? `changelog file is ${changelogFile}` : 'no changelog'));
detectRepoChangelog('./some-repository-directory')
.then((changelogFile) => {
if (changelogFile) {
console.log(`changelog file is ${changelogFile}`);
} else {
console.log('no changelog detected');
}
});
```

@@ -38,0 +44,0 @@

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