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

build-changelog

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-changelog - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

2

package.json
{
"name": "build-changelog",
"version": "2.1.1",
"version": "2.1.2",
"description": "A CLI to auto-generate a deploy ready changelog",

@@ -5,0 +5,0 @@ "keywords": [],

var parallel = require('continuable-para');
var path = require('path');
var fs = require('fs');
var semver = require('semver');

@@ -39,2 +40,9 @@ var computeVersion = require('./compute-version.js');

} else {
var versionStr = semver.parse(opts.nextVersion);
if (!versionStr) {
throw new Error('invalid version: ' + opts.nextVersion);
}
opts.nextVersion = versionStr.toString();
next(null, opts.nextVersion);

@@ -41,0 +49,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